mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			913 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			913 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: export DATE=`date '+%Y.%m.%d'` && export CI=true && export AZURE_REPO_NAME=yuzu-emu/yuzu-$(BuildName) && export AZURE_REPO_TAG=$(BuildName)-$DATE && 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'
 |