Skip to content

Commit e9542d2

Browse files
Update windows10-Enter.yml
1 parent 1fce1da commit e9542d2

File tree

1 file changed

+5
-15
lines changed

1 file changed

+5
-15
lines changed

.github/workflows/windows10-Enter.yml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,20 @@ on:
55
permissions: read-all
66
jobs:
77
build:
8-
98
runs-on: ${{ matrix.os }}
109
strategy:
1110
fail-fast: false
1211
matrix:
1312
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]
1914

2015
steps:
2116
- 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
2819
uses: actions/setup-java@v4
2920
with:
3021
distribution: 'graalvm'
31-
java-version: '21'
22+
java-version: ${{ matrix.java-version }}
3223

33-
- name: Build with Gradle
34-
run: ./gradlew :reactor-netty-graalvm-smoke-tests:nativeTest --no-daemon -PforceTransport=${{ matrix.transport }}
24+

0 commit comments

Comments
 (0)