cc3db2aa43
* ci: Add mock build alternative for fast testing * ci: Always cache build * ci: Extract steps to download build stage artifacts * ci: Add template to release to GitHub * ci: Add template to release to Azure Universal Artifacts * ci: Split mainline to two pipelines
22 lines
764 B
YAML
22 lines
764 B
YAML
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
|
|
- 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
|
|
displayName: 'Package Artifacts'
|
|
- publish: artifacts
|
|
artifact: 'yuzu-$(BuildName)-$(BuildSuffix)'
|
|
displayName: 'Upload Artifacts'
|