File tree 2 files changed +16
-5
lines changed
2 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 5
5
6
6
jobs :
7
7
build :
8
- runs-on : ubuntu-latest
8
+ runs-on : ${{ matrix.os }}
9
9
timeout-minutes : 15
10
10
strategy :
11
11
fail-fast : false
12
12
matrix :
13
13
include :
14
14
- nickname : linux jdk17
15
15
java : 17
16
- disable-samples : true
16
+ os : ubuntu-latest
17
+ - nickname : macos jdk17
18
+ java : 17
19
+ os : macos-latest
20
+ - nickname : windows jdk17
21
+ java : 17
22
+ os : windows-latest
17
23
name : CI PR ${{ matrix.nickname }}
18
24
steps :
19
25
- uses : actions/checkout@v3
23
29
java-version : ${{ matrix.java }}
24
30
cache : gradle
25
31
- name : Build
26
- env :
27
- DISABLE_SAMPLES : ${{ matrix.disable-samples }}
28
32
run : ./gradlew build
Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
build :
11
- runs-on : ubuntu-latest
11
+ runs-on : ${{ matrix.os }}
12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
15
include :
16
16
- nickname : linux jdk17
17
17
java : 17
18
+ os : ubuntu-latest
19
+ - nickname : macos jdk17
20
+ java : 17
21
+ os : macos-latest
22
+ - nickname : windows jdk17
23
+ java : 17
24
+ os : windows-latest
18
25
name : CI Build ${{ matrix.nickname }}
19
26
steps :
20
27
- uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments