2019-07-14 03:34:40 +02:00
|
|
|
parameters:
|
|
|
|
artifactSource: 'true'
|
2019-07-28 20:21:18 +02:00
|
|
|
cache: 'false'
|
2019-10-05 06:09:11 +02:00
|
|
|
version: ''
|
2019-07-14 03:34:40 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- task: DockerInstaller@0
|
|
|
|
displayName: 'Prepare Environment'
|
|
|
|
inputs:
|
|
|
|
dockerVersion: '17.09.0-ce'
|
2019-09-22 22:01:29 +02: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 06:09:11 +02:00
|
|
|
- script: chmod a+x ./.ci/scripts/$(ScriptFolder)/exec.sh && ./.ci/scripts/$(ScriptFolder)/exec.sh ${{ parameters['version'] }}
|
2019-07-14 03:34:40 +02:00
|
|
|
displayName: 'Build'
|
2019-07-24 22:42:33 +02:00
|
|
|
- script: chmod a+x ./.ci/scripts/$(ScriptFolder)/upload.sh && RELEASE_NAME=$(BuildName) ./.ci/scripts/$(ScriptFolder)/upload.sh
|
2019-07-14 03:34:40 +02:00
|
|
|
displayName: 'Package Artifacts'
|
|
|
|
- publish: artifacts
|
|
|
|
artifact: 'yuzu-$(BuildName)-$(BuildSuffix)'
|
|
|
|
displayName: 'Upload Artifacts'
|