2019-07-13 21:34:40 -04:00
|
|
|
parameters:
|
|
|
|
artifactSource: 'true'
|
2019-07-28 14:21:18 -04:00
|
|
|
cache: 'false'
|
2019-10-05 00:09:11 -04:00
|
|
|
version: ''
|
2019-07-13 21:34:40 -04:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- task: DockerInstaller@0
|
|
|
|
displayName: 'Prepare Environment'
|
|
|
|
inputs:
|
|
|
|
dockerVersion: '17.09.0-ce'
|
2019-09-22 16:01:29 -04:00
|
|
|
- task: CacheBeta@0
|
|
|
|
displayName: 'Cache Build System'
|
|
|
|
inputs:
|
|
|
|
key: yuzu-v1-$(BuildName)-$(BuildSuffix)-$(CacheSuffix)
|
|
|
|
path: $(System.DefaultWorkingDirectory)/ccache
|
|
|
|
cacheHitVar: CACHE_RESTORED
|
2019-10-05 00:09:11 -04:00
|
|
|
- script: chmod a+x ./.ci/scripts/$(ScriptFolder)/exec.sh && ./.ci/scripts/$(ScriptFolder)/exec.sh ${{ parameters['version'] }}
|
2019-07-13 21:34:40 -04:00
|
|
|
displayName: 'Build'
|
2019-07-24 16:42:33 -04:00
|
|
|
- script: chmod a+x ./.ci/scripts/$(ScriptFolder)/upload.sh && RELEASE_NAME=$(BuildName) ./.ci/scripts/$(ScriptFolder)/upload.sh
|
2019-07-13 21:34:40 -04:00
|
|
|
displayName: 'Package Artifacts'
|
|
|
|
- publish: artifacts
|
|
|
|
artifact: 'yuzu-$(BuildName)-$(BuildSuffix)'
|
|
|
|
displayName: 'Upload Artifacts'
|