Prepare release 2.8.0 #676
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gomobile for Android | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main, v2 ] | |
jobs: | |
build: | |
name: Build library for Android with gomobile | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ^1.16 | |
id: go | |
- name: Install NDK | |
uses: nttld/setup-ndk@v1 | |
with: | |
ndk-version: r23c | |
link-to-sdk: true | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
for d in $ANDROID_NDK_HOME/../23*; do | |
ANDROID_NDK_HOME=$d | |
done | |
./build.sh android | |
find dist | |
- name: Upload Android artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Android build | |
path: dist/android | |
if-no-files-found: error |