This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2019-07-14 01:34:40 +00:00
|
|
|
parameters:
|
|
|
|
artifactSource: 'true'
|
2019-07-28 18:21:18 +00:00
|
|
|
cache: 'false'
|
2019-10-05 04:09:11 +00:00
|
|
|
version: ''
|
2019-07-14 01:34:40 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- task: DockerInstaller@0
|
|
|
|
displayName: 'Prepare Environment'
|
|
|
|
inputs:
|
|
|
|
dockerVersion: '17.09.0-ce'
|
2019-09-22 20:01:29 +00: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 04:09:11 +00:00
|
|
|
- script: chmod a+x ./.ci/scripts/$(ScriptFolder)/exec.sh && ./.ci/scripts/$(ScriptFolder)/exec.sh ${{ parameters['version'] }}
|
2019-07-14 01:34:40 +00:00
|
|
|
displayName: 'Build'
|
2019-07-24 20:42:33 +00:00
|
|
|
- script: chmod a+x ./.ci/scripts/$(ScriptFolder)/upload.sh && RELEASE_NAME=$(BuildName) ./.ci/scripts/$(ScriptFolder)/upload.sh
|
2019-07-14 01:34:40 +00:00
|
|
|
displayName: 'Package Artifacts'
|
|
|
|
- publish: artifacts
|
|
|
|
artifact: 'yuzu-$(BuildName)-$(BuildSuffix)'
|
|
|
|
displayName: 'Upload Artifacts'
|