netty5/docker
Norman Maurer cafc669436
Add CI job for JDK17 (#11584)
Motivation:

As JDK17 is really close to be released we should add a CI job for it to ensure netty works correctly when using it.

Modifications:

Add docker config and workflow config to run CI job for JDK17

Result:

Ensure netty works on JDK17 as well
2021-08-18 10:08:49 +02:00
..
Dockerfile.centos6 Try to stabilize docker build by using https (#11070) 2021-03-09 09:10:02 +01:00
Dockerfile.cross_compile_aarch64 Let's use gcc10 when cross-compiling for LSE support (#11112) 2021-03-25 09:32:57 +01:00
README.md Use Github workflows for CI (#10879) 2020-12-22 18:33:14 +01:00
docker-compose.centos-6.18.yaml Revert "Only do a partial build for a few jobs when verify PRs (#11464)" 2021-07-13 15:32:42 +02:00
docker-compose.centos-6.111.yaml Revert "Only do a partial build for a few jobs when verify PRs (#11464)" 2021-07-13 15:32:42 +02:00
docker-compose.centos-6.116.yaml Revert "Only do a partial build for a few jobs when verify PRs (#11464)" 2021-07-13 15:32:42 +02:00
docker-compose.centos-6.117.yaml Add CI job for JDK17 (#11584) 2021-08-18 10:08:49 +02:00
docker-compose.centos-6.graalvm18.yaml Revert "Only do a partial build for a few jobs when verify PRs (#11464)" 2021-07-13 15:32:42 +02:00
docker-compose.centos-6.graalvm111.yaml Revert "Only do a partial build for a few jobs when verify PRs (#11464)" 2021-07-13 15:32:42 +02:00
docker-compose.centos-6.openj9111.yaml Revert "Only do a partial build for a few jobs when verify PRs (#11464)" 2021-07-13 15:32:42 +02:00
docker-compose.centos-7.yaml Make build log output less chatty (#11365) 2021-06-07 10:53:10 +02:00
docker-compose.yaml Revert "Only do a partial build for a few jobs when verify PRs (#11464)" 2021-07-13 15:32:42 +02:00

README.md

Using the docker images

cd /path/to/netty/

centos 6 with java 8

docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.centos-6.18.yaml run test

centos 6 with java 11

docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.centos-6.111.yaml run test

aarch64 cross compile for transport-native-epoll on X86_64

docker-compose -f docker/docker-compose.yaml run cross-compile-aarch64-build

The default version of aarch64 gcc is 4.9-2016.02. Update the parameter gcc_version in docker-compose.yaml to use a version you want.

etc, etc