Attempt to fix build errors
This commit is contained in:
parent
b70d70e82d
commit
b96a870c4e
19
.github/workflows/android-debug.yml
vendored
19
.github/workflows/android-debug.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Android Pull Request & Master CI
|
name: Android Master CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@ -29,8 +29,21 @@ jobs:
|
|||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@v1
|
||||||
with:
|
with:
|
||||||
java-version: 1.8
|
java-version: 1.8
|
||||||
- name: Build debug APK
|
- name: Android NDK toolchain Setup
|
||||||
run: bash ./gradlew assembleRelease --stacktrace
|
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
|
- name: Sign Android release
|
||||||
uses: r0adkll/sign-android-release@v1
|
uses: r0adkll/sign-android-release@v1
|
||||||
with:
|
with:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user