Skip to content

Commit

Permalink
Run all checks, drop java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
niloc132 committed Feb 3, 2025
1 parent f9c4242 commit 1102f26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nightly-check-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:
fail-fast: false
matrix:
gradle-task: ['a', 'b', 'c', 'd']
test-jvm-version: ['11', '17', '21', '23']
gradle-task: ['a', 'b', 'c', 'd', 'e']
test-jvm-version: ['17', '21', '23']
if: ${{ github.repository_owner == 'deephaven' || github.event_name != 'schedule' }}
runs-on: ubuntu-24.04
steps:
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:


- name: Run gradle ${{ matrix.gradle-task }} on java ${{ matrix.test-jvm-version }}
run: ./gradlew --scan --continue --rerun-tasks :go:check -PtestRuntimeVersion=${{ matrix.test-jvm-version }}
run: ./gradlew --scan --continue --rerun-tasks check -PtestRuntimeVersion=${{ matrix.test-jvm-version }}

- name: Upload Test Results
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion go/go-test-to-junit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tcpdump -C 10 -Z root -i any -U -w /out/tcpdump.pcap &
sleep 1

# Run the tests
go test -run TestListFieldsLoop -vet=all -v ./... 2>&1 | go-junit-report -set-exit-code -iocopy -out "$XML" && ret=$? || ret=$?;
go test -vet=all -v ./... 2>&1 | go-junit-report -set-exit-code -iocopy -out "$XML" && ret=$? || ret=$?;

# Pause another moment to ensure all packets were captures
sleep 1
Expand Down

0 comments on commit 1102f26

Please sign in to comment.