Skip to content

Commit

Permalink
Update build-android.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MeowShe authored Feb 5, 2024
1 parent e6396d8 commit 5c998da
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,15 @@ jobs:
wget https://dl.google.com/android/repository/android-ndk-${{ github.event.inputs.ndkVersion }}-linux.zip
unzip android-ndk-${{ github.event.inputs.ndkVersion }}-linux.zip -d ${{ github.workspace }}
echo "NDK_PATH=${{ github.workspace }}/android-ndk-${{ github.event.inputs.ndkVersion }}" >> $GITHUB_ENV
- name: Configure and Build
run: |
./android-configure $NDK_PATH $API_LEVEL $ARCH
- name: Verify Compiler Executability
run: |
ls -l ${{ env.CC }}
ls -l ${{ env.CXX }}
file ${{ env.CC }}
file ${{ env.CXX }}
- name: Configure and Build
- name: Build
run: |
./android-configure $NDK_PATH $API_LEVEL $ARCH && make -j4
make -j4

0 comments on commit 5c998da

Please sign in to comment.