Skip to content

- Build for more platforms; #30

- Build for more platforms;

- Build for more platforms; #30

Workflow file for this run

name: Publish artifacts to Sonatype Repo
on: [ push ]
env:
NATIVE_DIR: zwaves_jni/javalib/src/main/resources/META-INF/native
jobs:
build-native:
name: ${{ matrix.target }} library
runs-on: ${{ matrix.os }}
env:
build-arch: ${{ matrix.arch }}
build-platform: ${{ matrix.platform }}
build-target: ${{ matrix.build-arch }}-${{ matrix.build-platform }}
target-path: ${{ matrix.platform }}/${{ matrix.arch }}
# rust flags
TARGET_DIR: ./target
# Emit backtraces on panics.
RUST_BACKTRACE: 1
strategy:
matrix:
platform: [ linux, osx, windows ]
arch: [ aarch64, amd64, x86 ]
exclude:
- platform: osx
arch: x86
- platform: windows
arch: aarch64
include:
- platform: linux
os: ubuntu-latest
build-platform: unknown-linux-gnu
artifact: libzwaves_jni.so
- platform: osx
os: macos-latest
build-platform: apple-darwin
artifact: libzwaves_jni.dylib
- platform: windows
os: windows-latest
build-platform: pc-windows-gnu
artifact: libzwaves_jni.dll
- arch: amd64
build-arch: x86_64
- arch: x86
build-arch: i686
steps:
- name: Debug
run: |
echo "Build target: ${{ matrix.build-target }}"
echo "Target path: ${{ matrix.target-path }}"
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
target: ${{ matrix.build-target }}
- name: Enable Rust dependencies caching
uses: Swatinem/rust-cache@v2
- name: Run Rust tests
if: matrix.arch != 'aarch64' # Architecture is x86-64 always: https://stackoverflow.com/a/71220337
run: |
cd zwaves_jni
cargo test --lib --target ${{ matrix.build-target }}
- name: Build native libraries
run: |
cd zwaves_jni
cargo build --release --target ${{ matrix.build-target }}
cd ..
cp target/${{ matrix.build-target }}/release/${{ matrix.artifact }} ${{ env.NATIVE_DIR }}/${{ matrix.target-path }}
- name: Upload result
uses: actions/upload-artifact@v3
with:
name: native-libraries
path: ${{ env.NATIVE_DIR }}/**/*
build-jni:
name: Build JNI library
runs-on: ubuntu-latest
needs: build-native
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: 8
distribution: temurin
cache: gradle
- uses: actions/download-artifact@v3
with:
name: native-libraries
path: ${{ env.NATIVE_DIR }}
- name: Run tests
run: |
cd zwaves_jni/javalib
./gradlew publishToMavenLocal
- name: Publish Snapshot
run: |
cd zwaves_jni/javalib
./gradlew publishToMavenLocal
- name: Upload result
uses: actions/upload-artifact@v3
with:
name: javalib
path: ~/.m2/repository/com/wavesplatform