|
|
|
@ -1,17 +1,19 @@ |
|
|
|
parameters: |
|
|
|
artifactSource: 'true' |
|
|
|
cache: 'false' |
|
|
|
|
|
|
|
steps: |
|
|
|
- task: DockerInstaller@0 |
|
|
|
displayName: 'Prepare Environment' |
|
|
|
inputs: |
|
|
|
dockerVersion: '17.09.0-ce' |
|
|
|
- task: CacheBeta@0 |
|
|
|
displayName: 'Cache Build System' |
|
|
|
inputs: |
|
|
|
key: yuzu-v1-$(BuildName)-$(BuildSuffix)-$(CacheSuffix) |
|
|
|
path: $(System.DefaultWorkingDirectory)/ccache |
|
|
|
cacheHitVar: CACHE_RESTORED |
|
|
|
- ${{ if eq(parameterscache, 'true') }}: |
|
|
|
- task: CacheBeta@0 |
|
|
|
displayName: 'Cache Build System' |
|
|
|
inputs: |
|
|
|
key: yuzu-v1-$(BuildName)-$(BuildSuffix)-$(CacheSuffix) |
|
|
|
path: $(System.DefaultWorkingDirectory)/ccache |
|
|
|
cacheHitVar: CACHE_RESTORED |
|
|
|
- script: chmod a+x ./.ci/scripts/$(ScriptFolder)/exec.sh && ./.ci/scripts/$(ScriptFolder)/exec.sh |
|
|
|
displayName: 'Build' |
|
|
|
- script: chmod a+x ./.ci/scripts/$(ScriptFolder)/upload.sh && RELEASE_NAME=$(BuildName) ./.ci/scripts/$(ScriptFolder)/upload.sh |
|
|
|
|