netty5/docker
Norman Maurer c509a477ef
Ensure we also build dependent modules for deployments (#10936)
Motivation:

We need to ensure we also build the modules we depend on as otherwise we may not be able to resolve the dependencies correctly

Modifications:

- Add -am when calling maven

Result:

Deployment works all the time
2021-01-14 18:08:44 +01:00
..
Dockerfile.centos6 Use Github workflows for CI (#10879) 2020-12-22 18:33:14 +01:00
Dockerfile.cross_compile_aarch64 Add epoll aarch64 maven config and Dockerfile (#9804) 2020-04-23 13:58:08 +02:00
README.md Use Github workflows for CI (#10879) 2020-12-22 18:33:14 +01:00
docker-compose.centos-6.18.yaml Correctly deploy artifacts that are build on different archs (#10893) 2020-12-24 12:00:08 +01:00
docker-compose.centos-6.111.yaml Also include one PR job that uses boringssl (#10886) 2020-12-23 19:11:04 +01:00
docker-compose.centos-6.115.yaml Also include one PR job that uses boringssl (#10886) 2020-12-23 19:11:04 +01:00
docker-compose.centos-6.graalvm18.yaml Also include one PR job that uses boringssl (#10886) 2020-12-23 19:11:04 +01:00
docker-compose.centos-6.graalvm111.yaml Also include one PR job that uses boringssl (#10886) 2020-12-23 19:11:04 +01:00
docker-compose.centos-6.openj9111.yaml Also include one PR job that uses boringssl (#10886) 2020-12-23 19:11:04 +01:00
docker-compose.centos-7.yaml Ensure we also build dependent modules for deployments (#10936) 2021-01-14 18:08:44 +01:00
docker-compose.yaml Correctly deploy artifacts that are build on different archs (#10893) 2020-12-24 12:00:08 +01: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