-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (37 loc) · 1.03 KB
/
build_native_libraries.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
name: Build for different runners
on:
push:
branches-ignore:
- master
pull_request: {}
workflow_dispatch: {}
jobs:
build-native:
name: Build on ${{ matrix.os }} for jdk${{ matrix.java-version }}
strategy:
fail-fast: false
matrix:
java-version:
- 17
- 21
os:
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-24.04
- macos-13
- macos-14
- macos-15
- windows-2019
- windows-2022
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Build native library for ${{ matrix.os }} and jdk${{ matrix.java-version }}
uses: ./.github/actions/build_native_library
with:
runner-name: ${{ matrix.os }}
java-version: ${{ matrix.java-version }}
gpg-secret-key: ${{ secrets.GPG_SECRET_KEY }}
gpg-secret-key-password: ${{ secrets.GPG_SECRET_KEY_PASSWORD }}