-
Notifications
You must be signed in to change notification settings - Fork 7
129 lines (104 loc) · 3.31 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
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.arch }}/${{ matrix.platform }} library
runs-on: ${{ matrix.os }}
env:
# Where a library should be
target-path: ${{ matrix.platform }}/${{ matrix.arch }}
# Rust build target
build-target: ${{ matrix.build-arch }}-${{ matrix.build-platform }}
# Rust target directory
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: aarch64
build-arch: aarch64
- arch: amd64
build-arch: x86_64
- arch: x86
build-arch: i686
steps:
- name: Debug
run: |
echo "Build target: ${{ env.build-target }}"
echo "Target path: ${{ env.target-path }}"
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
target: ${{ env.build-target }}
- name: Enable Rust dependencies caching
uses: Swatinem/rust-cache@v2
- name: Run Rust tests
# Architecture is x86-64 always: https://stackoverflow.com/a/71220337
if: !(matrix.arch == 'aarch64' || matrix.arch == 'x86')
run: |
cd zwaves_jni
cargo test --lib --target ${{ env.build-target }}
- name: Build native libraries
run: |
cd zwaves_jni
cargo build --release --target ${{ env.build-target }}
cd ..
cp target/${{ env.build-target }}/release/${{ matrix.artifact }} ${{ env.NATIVE_DIR }}/${{ env.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