-
-
Notifications
You must be signed in to change notification settings - Fork 95
118 lines (103 loc) · 2.98 KB
/
build.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
name: Build
on:
push:
branches:
- main
- develop
- release
paths-ignore:
- "README.md"
pull_request:
branches:
- main
- develop
- release
paths-ignore:
- "README.md"
- "CHANGELOG.md"
jobs:
build_linux:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17' ]
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
name: Build with Java ${{ matrix.java }} in Ubuntu
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
java-package: jdk
architecture: x64
cache: 'maven'
- name: Build with Maven
run: mvn -B -ff -ntp clean install -Dgpg.skip=true
- name: Publish Code Coverage
if: github.ref == 'refs/heads/main' && matrix.java == '11'
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
name: codecov-umbrella
build_macos:
runs-on: macos-latest
strategy:
matrix:
java: [ '11', '17' ]
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
name: Build with Java ${{ matrix.java }} in MacOS
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
java-package: jdk
architecture: x64
cache: 'maven'
- name: Build with Maven
run: mvn -B -ff -ntp clean install -Dgpg.skip=true
build_windows:
runs-on: windows-latest
strategy:
matrix:
java: [ '11', '17' ]
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
name: Build with Java ${{ matrix.java }} in Windows
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
java-package: jdk
architecture: x64
cache: 'maven'
- name: Build with Maven
run: mvn -B -ff -ntp clean install --% -Dgpg.skip=true
verify-native:
name: Verify GraalVM ${{ matrix.java }} compatibility on ${{ matrix.os }}
strategy:
matrix:
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ]
java: [ '17', '21' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: graalvm/[email protected]
with:
java-version: ${{ matrix.java }}
distribution: 'graalvm-community'
- name: Install nitrite
run: mvn -B -ff -ntp clean install "-Dgpg.skip=true" -DskipTests
- name: Run native tests
working-directory: ./nitrite-native-tests
run: mvn -B -ff -ntp -PnativeTest verify