Check Reactor Netty 1.2.x with Netty 4.1 and 4.2 SNAPSHOTS #218
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check Reactor Netty 1.2.x with Netty 4.1 and 4.2 SNAPSHOTS | |
| on: | |
| schedule: | |
| - cron: "0 14 * * *" | |
| permissions: {} | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-22.04, macos-14, windows-2022] | |
| transport: [native, nio] | |
| exclude: | |
| # excludes native on Windows (there's none) | |
| - os: windows-2022 | |
| transport: native | |
| # macOS - https://github.com/netty/netty/issues/9689 | |
| - os: macos-14 | |
| transport: native | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| with: | |
| ref: '1.2.x' | |
| - name: Set up JDK 1.8 | |
| uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e | |
| with: | |
| distribution: 'zulu' | |
| java-version: '8' | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e | |
| with: | |
| distribution: 'graalvm' | |
| java-version: '17.0.12' | |
| - name: Build with Gradle against Netty 4.1 | |
| run: ./gradlew clean check -x :reactor-netty-core:java17Test --no-daemon -PforceTransport=${{ matrix.transport }} -PforceNettyVersion='4.1.131.Final-SNAPSHOT' | |
| - name: GraalVM smoke tests against Netty 4.1 | |
| run: ./gradlew :reactor-netty-graalvm-smoke-tests:nativeTest --no-daemon -PforceTransport=${{ matrix.transport }} -PforceNettyVersion='4.1.131.Final-SNAPSHOT' | |
| - name: Build with Gradle against Netty 4.2 | |
| run: ./gradlew clean check -x :reactor-netty-core:java17Test --no-daemon -PforceTransport=${{ matrix.transport }} -PforceNettyVersion='4.2.10.Final-SNAPSHOT' | |
| - name: GraalVM smoke tests against Netty 4.2 | |
| run: ./gradlew :reactor-netty-graalvm-smoke-tests:nativeTest --no-daemon -PforceTransport=${{ matrix.transport }} -PforceNettyVersion='4.2.10.Final-SNAPSHOT' |