fixup! ffi: convert to using gomobile #23
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: Build Android | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest-8core | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up NDK | |
uses: nttld/setup-ndk@v1 | |
id: setup-ndk | |
with: | |
ndk-version: r24 | |
local-cache: true | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21.1' | |
- name: Set up gomobile | |
run: | | |
go install golang.org/x/mobile/cmd/gomobile@latest | |
gomobile init | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Build AAR | |
run: gomobile bind -target=android -androidapi 26 -o imessage.aar ./imessage/ffi | |
# - name: Publish to GitHub Packages | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# run: ./android/gradlew -p android :library:publish | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: aar | |
path: ffi.aar |