Skip to content

Increase timeouts in calls to NetworkTableInstance.waitForListenerQue… #716

Increase timeouts in calls to NetworkTableInstance.waitForListenerQue…

Increase timeouts in calls to NetworkTableInstance.waitForListenerQue… #716

Workflow file for this run

name: Build Gradle project
on: push
jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
- name: Run build with Gradle Wrapper
run: ./gradlew --info build -PgearHeads.testJvmArg='-XX:ErrorFile=${{ github.workspace }}/hs_err_pid%p.log'
- name: Archive test artifacts
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: test-logs
path: |
*/build/reports/tests/test
hs_err_pid*.log
if-no-files-found: ignore