Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
gemmellr committed Sep 20, 2024
1 parent 8122be9 commit 52a5e32
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
fail-fast: false
matrix:
java: [ 11, 17, 21, 23, 24-ea ]
mvnArgs: ""
experimental: false
include:
- java: 24-ea
mvnArgs: "-Dnet.bytebuddy.experimental=true"
experimental: true

steps:
- uses: actions/checkout@v4
Expand All @@ -29,8 +29,13 @@ jobs:
java-version: ${{ matrix.java }}
distribution: 'temurin'

- name: Build
run: mvn -B clean verify ${{ matrix.mvnArgs }}
- name: Build (Regular)
if: ${{ ! matrix.experimental }}
run: mvn -B clean verify

- name: Build (BB Experimental)
if: ${{ matrix.experimental }}
run: mvn -B clean verify -Dnet.bytebuddy.experimental=true

- name: Archive Test Logs On Failure
if: failure()
Expand Down

0 comments on commit 52a5e32

Please sign in to comment.