JavaNetSoTimeoutHttpConnectionFilter
: handle zero and negative values
#3499
Workflow file for this run
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: PR Builder | |
on: | |
pull_request: | |
branches: [ main, '0.41', '0.42' ] | |
jobs: | |
build: | |
name: JDK ${{ matrix.java }} ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
java: [ 8, 11, 17, 20 ] | |
os: [ ubuntu-latest ] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'zulu' | |
cache: 'gradle' | |
- name: Print JDK Version | |
run: java -version | |
- name: Make gradlew Executable | |
run: chmod +x gradlew | |
# https://github.community/t/error-the-paging-file-is-too-small-for-this-operation-to-complete/17141 | |
- name: Configure Windows Pagefile | |
if: ${{ runner.os == 'Windows' }} | |
# v1.2 | |
uses: al-cheb/configure-pagefile-action@86589fd789a4de3e62ba628dda2cb10027b66d67 | |
with: | |
minimum-size: 8GB | |
maximum-size: 16GB | |
- name: Build and Test (Linux) | |
if: runner.os == 'Linux' | |
env: | |
JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8 | |
run: sudo -E env "PATH=$PATH" bash -c "ulimit -l 65536 && ulimit -a && ./gradlew --no-daemon --parallel clean test" | |
- name: Build and Test (non-Linux) | |
if: runner.os != 'Linux' | |
env: | |
JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8 | |
run: ./gradlew --no-daemon --parallel clean test | |
- name: Upload Test Results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-results-${{ matrix.os }}-${{ matrix.java }} | |
path: '**/build/test-results/test/TEST-*.xml' |