Release 24.0.0: Java 24 / Jakarta #20
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Default unit tests + Javadoc/sources (verify), then sample profile compile. | |
| # Full wsimport verify when licensed HI WSDL is present under wsdls/xml/. | |
| # Without licensed tree: validate only (public CI) or -Phi-wsdl-artifact locally (see CONTRIBUTING.md). | |
| name: CI | |
| on: | |
| push: | |
| branches: [ java-24 ] | |
| pull_request: | |
| branches: [ java-24 ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: "24" | |
| cache: maven | |
| - name: Maven verify (when licensed WSDL present) | |
| run: | | |
| if [ -f wsdls/xml/wsdl/consumer/20100731/HI_ConsumerSearchIHI-3.0.wsdl ]; then | |
| mvn -B -Dgpg.skip=true clean verify | |
| mvn -B -Psample -Dgpg.skip=true -DskipTests=true clean compile | |
| else | |
| echo "Licensed HI WSDL not in tree; running validate only (expected on public GitHub CI)." | |
| mvn -B -Dgpg.skip=true validate | |
| fi |