Test with the latest Netty Snapshots #505
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: Test with the latest Netty Snapshots | |
on: | |
schedule: | |
- cron: '0 15 * * 1-5' | |
workflow_dispatch: | |
env: | |
JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8 | |
jobs: | |
build: | |
name: Netty ${{ matrix.netty }} Snapshot on JDK ${{ matrix.java }} ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
env: | |
ORG_GRADLE_PROJECT_nettyVersion: ${{ matrix.netty }} | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ 8 ] | |
os: [ ubuntu-latest ] | |
netty: [ 4.1+, 4.2.0.Alpha+ ] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'zulu' | |
cache: 'gradle' | |
- name: Print JDK Version | |
run: java -version | |
- name: Make gradlew Executable | |
run: chmod +x gradlew | |
- name: Print Netty Version | |
run: ./gradlew :servicetalk-grpc-netty:dependencyInsight --configuration testRuntimeClasspath --dependency io.netty:netty-codec-http2 | head -n 50 | |
- name: Clean Gradle project | |
run: ./gradlew --parallel clean | |
- name: Build and Test | |
run: sudo -E env "PATH=$PATH" bash -c "ulimit -l 65536 && ulimit -a && ./gradlew --no-daemon --parallel test" | |
- name: Publish Test Results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.netty }} | |
path: '**/build/test-results/test/TEST-*.xml' |