Browse Source

ci: Fix Azure PR Builds

nce_cpp
Zach Hilman 6 years ago
parent
commit
ccc6c732fe
  1. 4
      .ci/templates/build-single.yml
  2. 1
      .ci/templates/build-standard.yml
  3. 1
      .ci/templates/build-testing.yml
  4. 2
      .ci/yuzu-mainline.yml
  5. 2
      .ci/yuzu-verify.yml

4
.ci/templates/build-single.yml

@ -1,12 +1,14 @@
parameters:
artifactSource: 'true'
cache: 'false'
steps:
- task: DockerInstaller@0
displayName: 'Prepare Environment'
inputs:
dockerVersion: '17.09.0-ce'
- task: CacheBeta@0
- ${{ if eq(parameterscache, 'true') }}:
- task: CacheBeta@0
displayName: 'Cache Build System'
inputs:
key: yuzu-v1-$(BuildName)-$(BuildSuffix)-$(CacheSuffix)

1
.ci/templates/build-standard.yml

@ -20,3 +20,4 @@ jobs:
- template: ./build-single.yml
parameters:
artifactSource: 'false'
cache: $(parameters.cache)

1
.ci/templates/build-testing.yml

@ -30,3 +30,4 @@ jobs:
- template: ./build-single.yml
parameters:
artifactSource: 'false'
cache: 'false'

2
.ci/yuzu-mainline.yml

@ -21,3 +21,5 @@ stages:
dependsOn: format
jobs:
- template: ./templates/build-standard.yml
parameters:
cache: 'true'

2
.ci/yuzu-verify.yml

@ -15,4 +15,6 @@ stages:
dependsOn: format
jobs:
- template: ./templates/build-standard.yml
parameters:
cache: 'false'
- template: ./templates/build-testing.yml
Loading…
Cancel
Save