From 5c998da4503848959076f75451ea53be74de78bf Mon Sep 17 00:00:00 2001 From: BuShe Pie Date: Mon, 5 Feb 2024 12:12:22 +0800 Subject: [PATCH] Update build-android.yml --- .github/workflows/build-android.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-android.yml b/.github/workflows/build-android.yml index 9a4303d59f7534..3d5aeba427ff8f 100644 --- a/.github/workflows/build-android.yml +++ b/.github/workflows/build-android.yml @@ -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