1dda2be8aa
Motivation: The builds often fail when downloading dependencies. This might be caused by the build taking a long time, and cause pooled connections to be closed by the remote end, if they are idle for too long. Modification: Disable connection pooling. This should force Maven to reestablish the connection for each download, thus reducing the likelihood of the remote end closing connections we wish to use. Result: I'll leave it up the statistis of our CI to confirm, but we should see more stable builds. |
||
---|---|---|
.. | ||
docker-compose.centos-6.18.yaml | ||
docker-compose.centos-6.19.yaml | ||
docker-compose.centos-6.110.yaml | ||
docker-compose.centos-6.111.yaml | ||
docker-compose.centos-6.112.yaml | ||
docker-compose.centos-6.113.yaml | ||
docker-compose.centos-6.114.yaml | ||
docker-compose.centos-6.graalvm18.yaml | ||
docker-compose.centos-6.graalvm111.yaml | ||
docker-compose.centos-6.openj9111.yaml | ||
docker-compose.centos-7.18.yaml | ||
docker-compose.centos-7.19.yaml | ||
docker-compose.centos-7.110.yaml | ||
docker-compose.centos-7.111.yaml | ||
docker-compose.centos-7.112.yaml | ||
docker-compose.centos-7.113.yaml | ||
docker-compose.centos-7.114.yaml | ||
docker-compose.yaml | ||
Dockerfile.centos | ||
Dockerfile.cross_compile_aarch64 | ||
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 7 with java 11
docker-compose -f docker/docker-compose.yaml -f docker/docker-compose.centos-7.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
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