We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b1d9e4 commit fd9182cCopy full SHA for fd9182c
.github/workflows/ci.yml
@@ -499,3 +499,19 @@ jobs:
499
gmake
500
gmake stats
501
gmake test
502
+
503
+ android:
504
+ runs-on: ubuntu-latest
505
+ container: reactnativecommunity/react-native-android:v13.0
506
+ steps:
507
+ - uses: actions/checkout@v4
508
+ - name: Configure android arm64
509
+ # see build options you can use in https://developer.android.com/ndk/guides/cmake
510
+ run: |
511
+ mkdir build
512
+ cd build
513
+ $ANDROID_HOME/cmake/3.22.1/bin/cmake -DCMAKE_TOOLCHAIN_FILE=$ANDROID_HOME/ndk/26.1.10909125/build/cmake/android.toolchain.cmake -DCMAKE_BUILD_TYPE=Release -DANDROID_ABI="arm64-v8a" -DANDROID_PLATFORM=android-24 ..
514
+ - name: Build android arm64
515
516
+ $ANDROID_HOME/cmake/3.22.1/bin/cmake --build build --target qjs
517
+ ls -lh build
0 commit comments