2022-04-18 21:03:12 +02:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
|
|
export NDK_CCACHE=$(which ccache)
|
2022-08-13 17:52:15 +02:00
|
|
|
[ "$GITHUB_REPOSITORY" = "citra-emu/citra-canary" ] &&
|
|
|
|
BUILD_FLAVOR=canary ||
|
|
|
|
BUILD_FLAVOR=nightly
|
2022-04-18 21:03:12 +02:00
|
|
|
|
|
|
|
ccache -s
|
|
|
|
|
|
|
|
cd src/android
|
|
|
|
chmod +x ./gradlew
|
2022-08-13 17:52:15 +02:00
|
|
|
./gradlew assemble${BUILD_FLAVOR}Release
|
|
|
|
./gradlew bundle${BUILD_FLAVOR}Release
|
2022-04-18 21:03:12 +02:00
|
|
|
|
|
|
|
ccache -s
|