.gitlab-ci.yml: add a build with OpenJDK 21 under Debian Trixie

This commit is contained in:
Sean Gilligan 2023-09-05 08:23:29 -07:00 committed by Andreas Schildbach
parent c8bf030824
commit 35150543e7

View file

@ -26,6 +26,20 @@ bookworm-jdk17:
paths: paths:
- core/build/libs/*.jar - core/build/libs/*.jar
trixie-jdk21:
image: debian:trixie-slim
before_script:
- apt-get update
- apt-get -y install openjdk-21-jdk-headless gradle
script:
- gradle build --stacktrace
after_script:
- gradle --version
artifacts:
name: bitcoinj-$CI_JOB_NAME-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA
paths:
- core/build/libs/*.jar
sast: sast:
stage: test stage: test