mirror of
https://git.h3cjp.net/H3cJP/citra.git
synced 2024-11-22 22:02:48 +00:00
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
|