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