File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
examples/llama.android/app Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -536,7 +536,9 @@ jobs:
536
536
- name : Build
537
537
run : |
538
538
cd examples/llama.android
539
- ./gradlew build --no-daemon -Ponly-arm64-v8a
539
+
540
+ # Skip armeabi-v7a for now (https://github.com/llvm/llvm-project/issues/65820).
541
+ ./gradlew build --no-daemon -Pskip-armeabi-v7a
540
542
541
543
# freeBSD-latest:
542
544
# runs-on: macos-12
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ android {
22
22
}
23
23
ndk {
24
24
// Workaround for https://github.com/llvm/llvm-project/issues/65820
25
- // affecting armeabi-v7a. Build for arm64-v8a only when invoked
26
- // with -Ponly-arm64-v8a (e.g. ./gradlew build -Ponly-arm64-v8a ).
27
- if (project.hasProperty(" only-arm64-v8a " )) {
28
- abiFilters + = listOf (" arm64-v8a" )
25
+ // affecting armeabi-v7a. Skip armeabi-v7a when invoked with
26
+ // -Pskip-armeabi-v7a (e.g., ./gradlew build -Pskip-armeabi-v7a ).
27
+ if (project.hasProperty(" skip-armeabi-v7a " )) {
28
+ abiFilters + = listOf (" arm64-v8a" , " x86_64 " , " x86 " )
29
29
}
30
30
}
31
31
externalNativeBuild {
You can’t perform that action at this time.
0 commit comments