-
-
Notifications
You must be signed in to change notification settings - Fork 7
370 lines (319 loc) · 10 KB
/
jni_libs.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
name: JNI Libs
on:
# push:
# paths-ignore:
# - 'README.md'
# - 'CHANGELOG.md'
pull_request:
paths-ignore:
- 'README.md'
- 'CHANGELOG.md'
workflow_dispatch:
inputs:
version:
description: dummy
default: dummy
defaults:
run:
shell: bash
jobs:
build-macos-jni-artifact:
name: JNI Artifact macOS Build
runs-on: macos-13
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: show architecture
run: uname -m
- name: install deps
run: brew install git automake yasm nasm
- name: build deps
run: |
ls -al
id
pwd
./circle_scripts/deps_macos.sh
- name: build jni lib
run: |
ls -al
id
pwd
./circle_scripts/java_jni_lib_macos.sh
- name: sha hash of jni lib
run: |
shasum -a 256 /Users/runner/ToxAndroidRefImpl/jni-c-toxcore/libjni-c-toxcore.jnilib || echo "ignore"
- name: Rename artifact for nightly upload
if: github.ref == 'refs/heads/master'
run: |
pwd
cp -v /Users/runner/ToxAndroidRefImpl/jni-c-toxcore/libjni-c-toxcore.jnilib libjni-c-toxcore.jnilib
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: libjni-c-toxcore.jnilib
path: libjni-c-toxcore.jnilib
- name: Upload to nightly release
uses: ncipollo/release-action@v1
if: github.ref == 'refs/heads/master'
with:
allowUpdates: true
tag: nightly
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
prerelease: true
replacesArtifacts: true
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: "libjni-c-toxcore.jnilib"
build-macos_arm64-jni-artifact:
name: JNI Artifact macOS arm64 Build
runs-on: macos-14
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: show architecture
run: uname -m
- name: install deps
run: brew install git automake autoconf yasm nasm libtool
- name: build deps
run: |
ls -al
id
pwd
./circle_scripts/deps_macos.sh
- name: build jni lib
run: |
ls -al
id
pwd
./circle_scripts/java_jni_lib_macos.sh
- name: sha hash of jni lib
run: |
shasum -a 256 /Users/runner/ToxAndroidRefImpl/jni-c-toxcore/libjni-c-toxcore.jnilib || echo "ignore"
- name: Rename artifact for nightly upload
if: github.ref == 'refs/heads/master'
run: |
pwd
cp -v /Users/runner/ToxAndroidRefImpl/jni-c-toxcore/libjni-c-toxcore.jnilib libjni-c-toxcore_arm64.jnilib
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: libjni-c-toxcore_arm64.jnilib
path: libjni-c-toxcore_arm64.jnilib
- name: Upload to nightly release
uses: ncipollo/release-action@v1
if: github.ref == 'refs/heads/master'
with:
allowUpdates: true
tag: nightly
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
prerelease: true
replacesArtifacts: true
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: "libjni-c-toxcore_arm64.jnilib"
build-raspi-jni-artifact:
name: JNI Artifact Raspi Build
runs-on: ubuntu-22.04
if: |
true
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: install deps
run: |
sudo apt-get update && \
sudo DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
ca-certificates
- name: make script dockcross-linux-arm64
run: docker run --rm dockcross/linux-arm64 > ./dockcross-linux-arm64; chmod +x ./dockcross-linux-arm64
- name: test
run: ./dockcross-linux-arm64 bash -c 'ls -al;id;pwd;hostname;uname -a'
- name: build deps
run: |
./dockcross-linux-arm64 bash -c './circle_scripts/deps_linux.sh raspi'
- name: build jni lib
run: |
./dockcross-linux-arm64 bash -c './circle_scripts/java_jni_lib_linux.sh raspi'
- name: sha hash of jni lib
run: |
mv -v /home/runner/work/trifa_material/trifa_material/libjni-c-toxcore.so /home/runner/work/trifa_material/trifa_material/libjni-c-toxcore_raspi.so
sha256sum /home/runner/work/trifa_material/trifa_material/libjni-c-toxcore_raspi.so || echo "ignore"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: libjni-c-toxcore_raspi.so
path: libjni-c-toxcore_raspi.so
- name: Upload to nightly release
uses: ncipollo/release-action@v1
if: github.ref == 'refs/heads/master'
with:
allowUpdates: true
tag: nightly
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
prerelease: true
replacesArtifacts: true
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: "libjni-c-toxcore_raspi.so"
build-asan-linux-jni-artifact:
name: JNI Artifact ASAN Linux Build
runs-on: ubuntu-20.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: install deps
run: |
sudo apt-get update && \
sudo DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
ca-certificates \
openjdk-17-jdk \
openjdk-17-jdk-headless \
coreutils autoconf libtool pkg-config \
libasan6 \
cmake \
nasm \
yasm
- name: build deps
run: |
ls -al
id
pwd
./circle_scripts/deps_linux.sh "" asan
- name: build jni lib
run: |
ls -al
id
pwd
./circle_scripts/java_jni_lib_linux.sh "" asan
- name: sha hash of jni lib
run: |
sha256sum /home/runner/work/trifa_material/trifa_material/libjni-c-toxcore.so || echo "ignore"
- name: rename jni lib
run: |
mv -v libjni-c-toxcore.so libjni-c-toxcore.so__ASAN
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: libjni-c-toxcore.so__ASAN
path: libjni-c-toxcore.so__ASAN
- name: Upload to nightly release
uses: ncipollo/release-action@v1
if: github.ref == 'refs/heads/master'
with:
allowUpdates: true
tag: nightly
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
prerelease: true
replacesArtifacts: true
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: "libjni-c-toxcore.so__ASAN"
build-linux-jni-artifact:
name: JNI Artifact Linux Build
runs-on: ubuntu-20.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: install deps
run: |
sudo apt-get update && \
sudo DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
ca-certificates \
openjdk-17-jdk \
openjdk-17-jdk-headless \
coreutils autoconf libtool pkg-config \
cmake \
nasm \
yasm
- name: build deps
run: |
ls -al
id
pwd
./circle_scripts/deps_linux.sh
- name: build jni lib
run: |
ls -al
id
pwd
./circle_scripts/java_jni_lib_linux.sh
- name: sha hash of jni lib
run: |
sha256sum /home/runner/work/trifa_material/trifa_material/libjni-c-toxcore.so || echo "ignore"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: libjni-c-toxcore.so
path: libjni-c-toxcore.so
- name: Upload to nightly release
uses: ncipollo/release-action@v1
if: github.ref == 'refs/heads/master'
with:
allowUpdates: true
tag: nightly
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
prerelease: true
replacesArtifacts: true
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: "libjni-c-toxcore.so"
build-windows-jni-artifact:
name: JNI Artifact Windows Build
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: install deps
run: |
sudo apt-get update && \
sudo DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
ca-certificates \
yasm \
openjdk-17-jdk \
openjdk-17-jdk-headless \
coreutils autoconf libtool pkg-config \
gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 binutils-mingw-w64-x86-64 \
mingw-w64-tools pkg-config-mingw-w64-x86-64 win-iconv-mingw-w64-dev \
mingw-w64-x86-64-dev
- name: build deps
run: |
ls -al
id
pwd
./circle_scripts/deps_win.sh
- name: build jni lib
run: |
ls -al
id
pwd
./circle_scripts/java_jni_lib_win.sh
- name: sha hash of jni lib
run: |
sha256sum /home/runner/work/trifa_material/trifa_material/jni-c-toxcore.dll || echo "ignore"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: jni-c-toxcore.dll
path: jni-c-toxcore.dll
- name: Upload to nightly release
uses: ncipollo/release-action@v1
if: github.ref == 'refs/heads/master'
with:
allowUpdates: true
tag: nightly
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
prerelease: true
replacesArtifacts: true
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: "jni-c-toxcore.dll"