Skip to content

Commit

Permalink
try enabling experimental BB support
Browse files Browse the repository at this point in the history
  • Loading branch information
gemmellr committed Sep 20, 2024
1 parent bd28a8e commit eb6c791
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,14 @@ jobs:
java-version: ${{ matrix.java }}
distribution: 'temurin'

- name: Build
- name: Build (regular)
if: matrix.java != '24-ea'
run: mvn -B clean verify

- name: Build (24-ea)
if: matrix.java == '24-ea'
run: mvn -B clean verify -Dnet.bytebuddy.experimental=true

- name: Archive Test Logs On Failure
if: failure()
run: tar -czvf surefire-reports-jdk-${{ matrix.java }}.tar.gz **/target/surefire-reports/*
Expand Down

0 comments on commit eb6c791

Please sign in to comment.