File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -499,3 +499,19 @@ jobs:
499
499
gmake
500
500
gmake stats
501
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.0.10792818/build/cmake/android.toolchain.cmake -DCMAKE_BUILD_TYPE=Release -DANDROID_ABI="arm64-v8a" -DANDROID_PLATFORM=android-24 ..
514
+ - name : Build android arm64
515
+ run : |
516
+ $ANDROID_HOME/cmake/3.22.1/bin/cmake --build build --target qjs
517
+ ls -lh build
You can’t perform that action at this time.
0 commit comments