This is an automated email from the ASF dual-hosted git repository.
ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-classloaders.git
The following commit(s) were added to refs/heads/main by this push:
new 7fe1f99 Add JDK25 build check to GitHub Actions
7fe1f99 is described below
commit 7fe1f99bf89b94f3fcec183776b9def79d44f978
Author: Christopher Tubbs <[email protected]>
AuthorDate: Thu Mar 5 18:18:54 2026 -0500
Add JDK25 build check to GitHub Actions
---
.github/workflows/maven.yaml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index 4ac4e71..81ff26a 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -59,6 +59,7 @@ jobs:
- {name: 'qa-checks', javaver: 21, args: 'verify javadoc:jar
-DskipTests -Dspotbugs.timeout=3600000'}
- {name: 'compat', javaver: 21, args: 'package -DskipTests
-Dversion.accumulo=4.0.0-SNAPSHOT -Puse-apache-snapshots
-Dmaven.compiler.failOnWarning=false'}
- {name: 'errorprone', javaver: 21, args: 'verify
-Perrorprone,skipQA'}
+ - {name: 'jdk25', javaver: 25, args: 'verify javadoc:jar
-DskipTests'}
fail-fast: false
runs-on: ubuntu-latest
steps:
@@ -76,14 +77,14 @@ jobs:
MAVEN_OPTS: -Djansi.force=true
- name: Upload unit test results
if: ${{ failure() }}
- uses: actions/upload-artifact@v6
+ uses: actions/upload-artifact@v7
with:
name: surefire-reports-${{ matrix.profile.name }}
path: ./**/target/surefire-reports/
if-no-files-found: ignore
- name: Upload integration test results
if: ${{ failure() }}
- uses: actions/upload-artifact@v6
+ uses: actions/upload-artifact@v7
with:
name: failsafe-reports-${{ matrix.profile.name }}
path: ./**/target/failsafe-reports/