Create release.yml
#2
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: Release | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android | |
- name: Set up Cargo Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: false | |
- name: Run tests | |
run: cargo test --workspace --verbose | |
- name: Build Release | |
run: cargo build --verbose --release | |
- name: Install JDK | |
uses: actions/[email protected] | |
with: | |
distribution: "temurin" | |
java-version: "22" | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Java tests | |
run: gradle test | |
working-directory: ./java | |
# Upload fs-storage JNI libs | |
- name: Install cargo-ndk | |
run: cargo install cargo-ndk | |
- name: Build fs-storage JNI libs | |
run: cargo ndk -o ./target/release/fs-storage/jniLibs --target aarch64-linux-android --target armv7-linux-androideabi --target i686-linux-android --target x86_64-linux-android build -p fs-storage --release | |
- name: Create JNI libs release | |
- uses: ncipollo/release-action@v1 | |
with: | |
makeLatest: true | |
artifacts: "./target/release/fs-storage/jniLibs" | |
- name: Publish Java release | |
run: gradle publish | |
working-directory: ./java | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |