forked from java-native-access/jna
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable build with JDK21 (java-native-access#585)
Motivation: Now that JDK21 is released we should also build with it on our CI Modifications: Add docker-compose config for JDK21 and use it in the PR workflow Result: Test with latest LTS release
- Loading branch information
1 parent
33c1427
commit 860921c
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
version: "3" | ||
|
||
services: | ||
|
||
runtime-setup: | ||
image: netty-codec-quic-centos7:centos-7-21 | ||
build: | ||
args: | ||
java_version : "21-zulu" | ||
|
||
build: | ||
image: netty-codec-quic-centos7:centos-7-21 | ||
|
||
build-leak: | ||
image: netty-codec-quic-centos7:centos-7-21 | ||
|
||
build-no-unsafe: | ||
image: netty-codec-quic-centos7:centos-7-21 | ||
|
||
build-clean: | ||
image: netty-codec-quic-centos7:centos-7-21 | ||
|
||
deploy: | ||
image: netty-codec-quic-centos7:centos-7-21 | ||
|
||
deploy-clean: | ||
image: netty-codec-quic-centos7:centos-7-21 | ||
|
||
stage-snapshot: | ||
image: netty-codec-quic-centos7:centos-7-21 | ||
|
||
stage-release: | ||
image: netty-codec-quic-centos7:centos-7-21 | ||
|
||
shell: | ||
image: netty-codec-quic-centos7:centos-7-21 |