Downgrade CI to Java 21. #197
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
name: Java CI with Maven | |
on: | |
push: | |
branches: [ main, 'hacking/**' ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build server | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out sources | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
cache: 'maven' | |
- name: Build with Maven | |
run: | | |
cd server | |
./mvnw -B verify --file pom.xml | |
buildpacks: | |
name: Build Image with Buildpacks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out sources | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
cache: 'maven' | |
- name: Build with Maven | |
run: | | |
cd server | |
./mvnw -B -Dspring-boot.build-image.publish \ | |
-Dspring-boot.build-image.imageName=ttl.sh/restbucks-${GITHUB_WORKFLOW_SHA}:1d \ | |
-Pbuildpacks | |
buildpacks-native: | |
name: Build Native Image with Buildpacks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out sources | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
cache: 'maven' | |
- name: Build with Maven | |
run: | | |
cd server | |
./mvnw -B -Dspring-boot.build-image.publish=true \ | |
-Dspring-boot.build-image.imageName=ttl.sh/restbucks-native-${GITHUB_WORKFLOW_SHA}:1d \ | |
-Pbuildpacks-native |