Skip to content

Commit

Permalink
Always cleanup node in Maven check jobs
Browse files Browse the repository at this point in the history
The JDK 22 job started failing recently in the post-setup step with a
`System.IO.IOException: No space left on device` error.
  • Loading branch information
nineinchnick authored and ebyhr committed Jul 9, 2024
1 parent c9d984e commit 7934636
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ jobs:
fail-fast: false
matrix:
include:
- { java-version: 22, cache: 'true', cleanup-node: false }
- { java-version: 23-ea, cache: 'restore', cleanup-node: true }
- { java-version: 22, cache: 'true' }
- { java-version: 23-ea, cache: 'restore' }
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
Expand All @@ -72,7 +72,7 @@ jobs:
with:
cache: ${{ matrix.cache }}
java-version: ${{ matrix.java-version }}
cleanup-node: ${{ matrix.cleanup-node }}
cleanup-node: true
- name: Check SPI backward compatibility
run: |
export MAVEN_OPTS="${MAVEN_INSTALL_OPTS}"
Expand Down

0 comments on commit 7934636

Please sign in to comment.