Check Netty SNAPSHOTS #1745
This file contains 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 Netty SNAPSHOTS | |
on: | |
schedule: | |
- cron: "0 14 * * *" | |
permissions: read-all | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, macos-12, windows-2019] | |
transport: [native, nio] | |
exclude: | |
# excludes native on Windows (there's none) | |
- os: windows-2019 | |
transport: native | |
# macOS - https://github.com/netty/netty/issues/9689 | |
- os: macos-12 | |
transport: native | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- name: Build with Gradle | |
run: ./gradlew clean check --no-daemon -PforceTransport=${{ matrix.transport }} -PforceNettyVersion='4.1.113.Final-SNAPSHOT' |