d5d6c3d3cf
Motivation: When Maven does not run in batch mode, it will continuously print its progress as it downloads dependencies. This can produce a very large amount of log output, that makes it harder to debug build failures. Modification: Make all Maven builds run in batch mode by adding the `-B` command line flag, and have transfer progress suppressed with the `-ntp` flag. Some builds were already running batch mode but had the flag in a different location – these have had their `-B` flag moved so all builds are consistent. Result: Much less output in our build logs where Maven is just downloading stuff.
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