-
Notifications
You must be signed in to change notification settings - Fork 18
185 lines (180 loc) · 6.1 KB
/
java.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
name: java
on:
pull_request:
types: [ opened, synchronize ]
jobs:
build-test-java-linux-64:
runs-on: ubuntu-20.04
steps:
- name: Check out repository code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
- name: Install pixi
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
- name: Cache
uses: actions/cache@v3
with:
key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-test-java-linux-64
path: |
~/.cargo
target
.pixi
- name: Test Java
run: pixi run test-java
- name: Copy native lib
run: |
mkdir -p native/linux-64
cp target/release/libvegafusion_jni.so native/linux-64
- name: Upload artifacts
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
with:
name: jni-native
path: |
native
build-test-java-osx-64:
runs-on: macos-11
steps:
- name: Check out repository code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
- name: Install pixi
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
- name: Cache
uses: actions/cache@v3
with:
key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-test-java-osx-64
path: |
~/.cargo
target
.pixi
- name: Test Java
run: pixi run test-java
- name: Copy native lib
run: |
mkdir -p native/osx-64
cp target/release/libvegafusion_jni.dylib native/osx-64
- name: Upload artifacts
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
with:
name: jni-native
path: |
native
build-java-osx-arm64:
runs-on: macos-11
steps:
- name: Check out repository code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
- name: Install pixi
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
- name: Cache
uses: actions/cache@v3
with:
key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-java-osx-arm64
path: |
~/.cargo
target
.pixi
- name: Build jni library
run: |
pixi run python automation/download_rust_target.py aarch64-apple-darwin
pixi run build-jni --target aarch64-apple-darwin
- name: Copy native lib
run: |
mkdir -p native/osx-arm64
cp target/aarch64-apple-darwin/release/libvegafusion_jni.dylib native/osx-arm64
- name: Upload artifacts
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
with:
name: jni-native
path: |
native
build-test-java-win-64:
runs-on: windows-2022
steps:
- name: Check out repository code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
- name: Install pixi
run: |
iwr -useb https://pixi.sh/install.ps1 | iex
echo "${HOME}/AppData/Local/pixi/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Cache
uses: actions/cache@v3
with:
key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-test-java-win-64
path: |
~/.cargo
target
.pixi
- name: Test Java
run: pixi run test-java-win
- name: Copy native lib
run: |
mkdir -p native/win-64
cp target/release/vegafusion_jni.dll native/win-64
- name: Upload artifacts
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
with:
name: jni-native
path: |
native
build-jar:
runs-on: ubuntu-20.04
needs:
- build-test-java-linux-64
- build-test-java-osx-64
- build-java-osx-arm64
- build-test-java-win-64
steps:
- name: Check out repository code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
- name: Install pixi
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
- name: Cache
uses: actions/cache@v3
with:
key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-jar
path: |
.pixi
- name: Download jni libs
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # [email protected]
with:
name: jni-native
path: jni-native
- name: Build jar
run: |
export VEGAFUSION_JNI_LIBRARIES=/home/runner/work/vegafusion/vegafusion/jni-native
pixi run build-jar
- name: Upload jar
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
with:
name: jar
path: |
java/lib/build/libs/vegafusion-*.jar
try-jar:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
- macos-11
- windows-2022
runs-on: ${{ matrix.os }}
needs: [ build-jar ]
steps:
- name: Install Java
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # pin@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Download jar
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # [email protected]
with:
name: jar
path: .
- name: Run jar (non-Windows)
if: ${{ runner.os != 'Windows' }}
run: |
java -jar vegafusion-*.jar
- name: Run jar (Windows)
if: ${{ runner.os == 'Windows' }}
run: |
$jarFile = Get-ChildItem -Path .\ -Filter "vegafusion-*.jar" | Select-Object -First 1
java -jar $jarFile