Delete .azure-pipelines.yml

This commit is contained in:
Margen67 2023-07-24 13:59:14 -07:00 committed by GitHub
parent e54262b710
commit a10c04d948
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 44 deletions

View File

@ -1,44 +0,0 @@
trigger:
branches:
include: [ '*' ]
exclude: [ gh-pages, master, canary_base ]
paths:
exclude:
- '*.md'
- '.appveyor.yml'
- '.github/**'
- 'docs/**'
- 'LICENSE'
pr:
branches:
include: [ '*' ]
exclude: [ gh-pages, master, canary_base ]
paths:
exclude:
- '*.md'
- '.appveyor.yml'
- '.github/**'
- 'docs/**'
- 'LICENSE'
pool:
vmImage: windows-latest
variables:
POWERSHELL_TELEMETRY_OPTOUT: 1
steps:
- pwsh: .\xb setup
displayName: Setup
- pwsh: .\xb build --target=src\xenia-app --target=src\xenia-vfs-dump
displayName: Build
- pwsh: |-
robocopy . build\bin\Windows\Release LICENSE /r:0 /w:0
robocopy build\bin\Windows\Release $(Build.ArtifactStagingDirectory)\xenia_canary xenia_canary.exe xenia_canary.pdb LICENSE /r:0 /w:0
robocopy build\bin\Windows\Release $(Build.ArtifactStagingDirectory)\xenia-vfs-dump_canary xenia-vfs-dump.exe xenia-vfs-dump.pdb LICENSE /r:0 /w:0
If ($LastExitCode -le 7) { echo "LastExitCode = $LastExitCode";$LastExitCode = 0 }
displayName: Prepare artifacts
- publish: $(Build.ArtifactStagingDirectory)\xenia_canary
artifact: xenia_canary
displayName: Publish xenia_canary artifacts
- publish: $(Build.ArtifactStagingDirectory)\xenia-vfs-dump_canary
artifact: xenia-vfs-dump_canary
displayName: Publish xenia-vfs-dump_canary artifacts