Add JDK 24 EA build #36
This file contains 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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Spring Katas CI Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
project-build: | |
strategy: | |
matrix: | |
# os: [macos-latest, ubuntu-latest, windows-latest] | |
os: [ubuntu-latest] | |
java-version: [11, 21, 24] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v2 | |
- name: Set JDK ${{ matrix.java-version }} from jdk.java.net | |
uses: oracle-actions/setup-java@v1 | |
id: download-jdk | |
with: | |
website: jdk.java.net | |
release: ${{ matrix.java-version }} | |
if: ${{matrix.java-version != 11 && matrix.java-version != 21}} | |
- name: Set JDK ${{ matrix.java-version }} from Zulu | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java-version }} | |
if: ${{matrix.java-version == 11 || matrix.java-version == 21}} | |
- name: JDK Version | |
run: java --version | |
- name: Enable Maven Cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Maven | |
run: mvn verify -DskipTests=true -Dmaven.javadoc.skip=true -B -V --no-transfer-progress | |
env: | |
MAVEN_OPTS: "-Dmaven.repo.local=$HOME/.m2/repository -Xmx1g -Dorg.slf4j.simpleLogger.showDateTime=true -Dorg.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss:SSS" |