diff options
| author | liushuyu <liushuyu011@gmail.com> | 2023-03-03 22:38:56 -0700 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2023-06-03 00:05:33 -0700 |
| commit | 1d0329a065f627de17c97ff5224dfc90504b83f8 (patch) | |
| tree | 78028f74a5302ead3364f5c1d9a15a1a83eadc10 /.ci/scripts/android/build.sh | |
| parent | 26ee6844c21fccca5741b0e777bf7d916a64a2dc (diff) | |
CI: add Android build systems
Diffstat (limited to '.ci/scripts/android/build.sh')
| -rwxr-xr-x | .ci/scripts/android/build.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.ci/scripts/android/build.sh b/.ci/scripts/android/build.sh new file mode 100755 index 000000000..1d669919c --- /dev/null +++ b/.ci/scripts/android/build.sh @@ -0,0 +1,12 @@ +#!/bin/bash -ex + +export NDK_CCACHE="$(which ccache)" +ccache -s + +BUILD_FLAVOR=mainline + +cd src/android +chmod +x ./gradlew +./gradlew "assemble${BUILD_FLAVOR}Release" "bundle${BUILD_FLAVOR}Release" + +ccache -s |
