File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 99 build :
1010 name : Build
1111 runs-on : ubuntu-latest
12+ env :
13+ ANDROID_VERSION : 21
1214 steps :
1315 - name : Code checkout
1416 uses : actions/checkout@v4
4042 make -C apps/basic clean
4143 make
4244 make -C apps/basic
45+ - name : Build (Android)
46+ env :
47+ CC : aarch64-linux-android${{ env.ANDROID_VERSION }}-clang
48+ FULL_CONTEXT : 0
49+ USE_SYSCALL_TABLE : 0
50+ SYSCALL_RECORD : 0
51+ run : |
52+ export PATH=$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH
53+ make clean
54+ make -C apps/basic clean
55+ make
56+ make -C apps/basic
57+ - name : Build (Android)
58+ env :
59+ CC : aarch64-linux-android${{ env.ANDROID_VERSION }}-clang
60+ FULL_CONTEXT : 1
61+ USE_SYSCALL_TABLE : 1
62+ SYSCALL_RECORD : 1
63+ run : |
64+ export PATH=$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH
65+ make clean
66+ make -C apps/basic clean
67+ make
68+ make -C apps/basic
4369 - name : Format
4470 run : |
4571 make fmt
You can’t perform that action at this time.
0 commit comments