Skip to content

Commit

Permalink
NDK
Browse files Browse the repository at this point in the history
  • Loading branch information
danemadsen committed Aug 1, 2024
1 parent 658c265 commit b7091e2
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup cmake

- name: Setup CMake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.26.0'
Expand All @@ -31,6 +31,11 @@ jobs:
wget https://dl.google.com/android/repository/android-ndk-r27-linux.zip
unzip android-ndk-r27-linux.zip
export ANDROID_NDK_HOME=${PWD}/android-ndk-r27
echo "ANDROID_NDK_HOME=${PWD}/android-ndk-r27" >> $GITHUB_ENV
- name: Verify NDK Version
run: |
${ANDROID_NDK_HOME}/ndk-build --version
- name: Determine CPU Cores
id: cpu-info
Expand All @@ -49,4 +54,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: android-arm64-v8a
path: lib/
path: lib/

0 comments on commit b7091e2

Please sign in to comment.