Skip to content

Commit

Permalink
try ea 1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
gemmellr committed Sep 20, 2024
1 parent b98ecdd commit 290522e
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 11, 17, 21, 23 ]
java: [ 11, 17, 21, 23, 24-ea ]
experimental: [ false ]
include:
- java: 24-ea
experimental: true

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

- name: Build
- 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()
run: tar -czvf surefire-reports-jdk-${{ matrix.java }}.tar.gz **/target/surefire-reports/*
Expand Down

0 comments on commit 290522e

Please sign in to comment.