16 lines
		
	
	
		
			293 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			293 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash -ex
 | |
| 
 | |
| export NDK_CCACHE=$(which ccache)
 | |
| [ "$GITHUB_REPOSITORY" = "citra-emu/citra-canary" ] &&
 | |
|    BUILD_FLAVOR=canary ||
 | |
|    BUILD_FLAVOR=nightly
 | |
| 
 | |
| ccache -s
 | |
| 
 | |
| cd src/android
 | |
| chmod +x ./gradlew
 | |
| ./gradlew assemble${BUILD_FLAVOR}Release
 | |
| ./gradlew bundle${BUILD_FLAVOR}Release
 | |
| 
 | |
| ccache -s
 | 
