File tree Expand file tree Collapse file tree 1 file changed +5
-15
lines changed Expand file tree Collapse file tree 1 file changed +5
-15
lines changed Original file line number Diff line number Diff line change 5
5
permissions : read-all
6
6
jobs :
7
7
build :
8
-
9
8
runs-on : ${{ matrix.os }}
10
9
strategy :
11
10
fail-fast : false
12
11
matrix :
13
12
os : [ubuntu-20.04, macos-13, windows-2022]
14
- transport : [native, nio]
15
- exclude :
16
- # excludes native on Windows (there's none)
17
- - os : windows-2022
18
- transport : native
13
+ java-version : [21, 23]
19
14
20
15
steps :
21
16
- uses : actions/checkout@v4
22
- - name : Set up JDK 1.8
23
- uses : actions/setup-java@v4
24
- with :
25
- distribution : ' temurin'
26
- java-version : ' 8'
27
- - name : Set up GraalVM 17
17
+
18
+ - name : Set up GraalVM
28
19
uses : actions/setup-java@v4
29
20
with :
30
21
distribution : ' graalvm'
31
- java-version : ' 21 '
22
+ java-version : ${{ matrix.java-version }}
32
23
33
- - name : Build with Gradle
34
- run : ./gradlew :reactor-netty-graalvm-smoke-tests:nativeTest --no-daemon -PforceTransport=${{ matrix.transport }}
24
+
You can’t perform that action at this time.
0 commit comments