ci: Fix Azure PR Builds
This commit is contained in:
parent
52f54c728d
commit
bcbec6f37c
|
@ -1,12 +1,14 @@
|
||||||
parameters:
|
parameters:
|
||||||
artifactSource: 'true'
|
artifactSource: 'true'
|
||||||
|
cache: 'false'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- task: DockerInstaller@0
|
- task: DockerInstaller@0
|
||||||
displayName: 'Prepare Environment'
|
displayName: 'Prepare Environment'
|
||||||
inputs:
|
inputs:
|
||||||
dockerVersion: '17.09.0-ce'
|
dockerVersion: '17.09.0-ce'
|
||||||
- task: CacheBeta@0
|
- ${{ if eq(parameterscache, 'true') }}:
|
||||||
|
- task: CacheBeta@0
|
||||||
displayName: 'Cache Build System'
|
displayName: 'Cache Build System'
|
||||||
inputs:
|
inputs:
|
||||||
key: yuzu-v1-$(BuildName)-$(BuildSuffix)-$(CacheSuffix)
|
key: yuzu-v1-$(BuildName)-$(BuildSuffix)-$(CacheSuffix)
|
||||||
|
|
|
@ -20,3 +20,4 @@ jobs:
|
||||||
- template: ./build-single.yml
|
- template: ./build-single.yml
|
||||||
parameters:
|
parameters:
|
||||||
artifactSource: 'false'
|
artifactSource: 'false'
|
||||||
|
cache: $(parameters.cache)
|
|
@ -30,3 +30,4 @@ jobs:
|
||||||
- template: ./build-single.yml
|
- template: ./build-single.yml
|
||||||
parameters:
|
parameters:
|
||||||
artifactSource: 'false'
|
artifactSource: 'false'
|
||||||
|
cache: 'false'
|
||||||
|
|
|
@ -21,3 +21,5 @@ stages:
|
||||||
dependsOn: format
|
dependsOn: format
|
||||||
jobs:
|
jobs:
|
||||||
- template: ./templates/build-standard.yml
|
- template: ./templates/build-standard.yml
|
||||||
|
parameters:
|
||||||
|
cache: 'true'
|
||||||
|
|
|
@ -15,4 +15,6 @@ stages:
|
||||||
dependsOn: format
|
dependsOn: format
|
||||||
jobs:
|
jobs:
|
||||||
- template: ./templates/build-standard.yml
|
- template: ./templates/build-standard.yml
|
||||||
|
parameters:
|
||||||
|
cache: 'false'
|
||||||
- template: ./templates/build-testing.yml
|
- template: ./templates/build-testing.yml
|
Reference in New Issue