-
Notifications
You must be signed in to change notification settings - Fork 342
76 lines (63 loc) · 1.78 KB
/
jni.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
name: Producer CPP JNI Builds
on:
push:
branches:
- develop
- master
pull_request:
branches:
- develop
- master
jobs:
mac-os:
strategy:
matrix:
config:
- name: Intel x86_64
runner: macos-13
- name: Apple Silicon
runner: macos-15
- name: Ubuntu 22.04
runner: ubuntu-latest
container: public.ecr.aws/ubuntu/ubuntu:22.04_stable
- name: Ubuntu 20.04
runner: ubuntu-latest
container: public.ecr.aws/ubuntu/ubuntu:20.04_stable
java:
- 11
- 17
- 21
fail-fast: false
name: JNI ${{ matrix.config.name }} (Java ${{ matrix.java }})
runs-on: ${{ matrix.config.runner }}
container: ${{ matrix.config.container || '' }}
env:
DEBIAN_FRONTEND: noninteractive
steps:
- name: Setup XCode
if: ${{ runner.os == 'macOS' }}
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Install Dependencies (Linux only)
if: runner.os == 'Linux'
run: |
apt-get update
apt-get install -y git cmake build-essential
- name: Set up Java (JDK ${{ matrix.java }})
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: ${{ matrix.java }}
- name: Clone repository
uses: actions/checkout@v4
- name: Build JNI (CMake)
run: |
mkdir build && cd build
cmake .. -DBUILD_JNI_ONLY=ON
# Note: Dependencies on/off shouldn't make any difference since
# the only dependency for the JNI is PIC
- name: Build JNI (make)
working-directory: ./build
run: |
make -j