64 lines
2 KiB
YAML
64 lines
2 KiB
YAML
name: Build
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
android:
|
|
name: Android Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup JDK 17
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: '17'
|
|
distribution: 'temurin'
|
|
cache: gradle
|
|
- name: Setup build
|
|
run: |
|
|
cargo install cargo-ndk
|
|
rustup target add aarch64-linux-android
|
|
rustup target add armv7-linux-androideabi
|
|
rustup target add x86_64-linux-android
|
|
- name: Setup Java build
|
|
run: |
|
|
chmod +x android/gradlew
|
|
echo "${{ secrets.ANDROID_RELEASE }}" > release.keystore.txt
|
|
base64 -d release.keystore.txt > android/keystore
|
|
echo -e "storePassword=${{ secrets.ANDROID_RELEASE_STORE }}\nkeyPassword=${{ secrets.ANDROID_RELEASE_KEY }}\nkeyAlias=${{ secrets.ANDROID_RELEASE_ALIAS }}\nstoreFile=../keystore" > android/keystore.properties
|
|
- name: Build lib 1/2
|
|
continue-on-error: true
|
|
run: |
|
|
sed -i -e 's/"rlib"/"cdylib","rlib"/g' Cargo.toml
|
|
export CPPFLAGS="-DMDB_USE_ROBUST=0" && export CFLAGS="-DMDB_USE_ROBUST=0" && cargo ndk -t arm64-v8a build --profile release-apk
|
|
- name: Build lib 2/2
|
|
run: |
|
|
unset CPPFLAGS && unset CFLAGS && cargo ndk -t arm64-v8a -o android/app/src/main/jniLibs build --profile release-apk
|
|
sed -i -e 's/"cdylib","rlib"/"rlib"/g' Cargo.toml
|
|
- name: Build APK
|
|
working-directory: android
|
|
run: |
|
|
./gradlew assembleRelease
|
|
|
|
linux:
|
|
name: Linux Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Release build
|
|
run: cargo build --release
|
|
|
|
windows:
|
|
name: Windows Build
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Release build
|
|
run: cargo build --release
|
|
|
|
macos:
|
|
name: MacOS Build
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Release build
|
|
run: cargo build --release
|