From b96a870c4ecfdda1a66b438f528d67d8863069d7 Mon Sep 17 00:00:00 2001 From: jobobby04 Date: Sat, 9 May 2020 18:09:21 -0400 Subject: [PATCH] Attempt to fix build errors --- .github/workflows/android-debug.yml | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/.github/workflows/android-debug.yml b/.github/workflows/android-debug.yml index 1b00bae19..45ac982e1 100644 --- a/.github/workflows/android-debug.yml +++ b/.github/workflows/android-debug.yml @@ -1,4 +1,4 @@ -name: Android Pull Request & Master CI +name: Android Master CI on: push: @@ -29,8 +29,21 @@ jobs: uses: actions/setup-java@v1 with: java-version: 1.8 - - name: Build debug APK - run: bash ./gradlew assembleRelease --stacktrace + - name: Android NDK toolchain Setup + uses: ravinderjangra/android-ndk-toolchain-setup@0.2 + with: + # Android API + api: 20 # default is 21 + # Platform arch + arch: x86 + # Path to use for NDK toolchain + install-location: toolchains + # Force install toolchain + force: true # optional, default is false + # Add toolchain to the path + add-to-path: true # optional, default is true + - name: Build Release APK + run: bash ./gradlew assembleStandard --stacktrace - name: Sign Android release uses: r0adkll/sign-android-release@v1 with: