2018-05-28 10:31:48 +02:00
|
|
|
version: "3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
runtime-setup:
|
|
|
|
image: netty:default
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile.centos
|
|
|
|
|
|
|
|
common: &common
|
|
|
|
image: netty:default
|
|
|
|
depends_on: [runtime-setup]
|
|
|
|
volumes:
|
|
|
|
- ~/.ssh:/root/.ssh
|
|
|
|
- ~/.gnupg:/root/.gnupg
|
|
|
|
- ..:/code
|
|
|
|
working_dir: /code
|
|
|
|
|
2018-09-27 09:13:28 +02:00
|
|
|
test-leak:
|
|
|
|
<<: *common
|
|
|
|
command: /bin/bash -cl "./mvnw -Pleak clean install -Dio.netty.testsuite.badHost=netty.io"
|
|
|
|
|
2018-05-28 10:31:48 +02:00
|
|
|
test:
|
|
|
|
<<: *common
|
2018-05-29 11:09:22 +02:00
|
|
|
command: /bin/bash -cl "./mvnw clean install -Dio.netty.testsuite.badHost=netty.io"
|
|
|
|
|
|
|
|
test-boringssl-static:
|
|
|
|
<<: *common
|
2018-10-28 10:27:34 +01:00
|
|
|
command: /bin/bash -cl "./mvnw -P boringssl clean install -Dio.netty.testsuite.badHost=netty.io -Dxml.skip=true"
|
2018-05-29 11:09:22 +02:00
|
|
|
|
|
|
|
shell:
|
|
|
|
<<: *common
|
|
|
|
volumes:
|
|
|
|
- ~/.ssh:/root/.ssh
|
|
|
|
- ~/.gnupg:/root/.gnupg
|
|
|
|
- ..:/code
|
|
|
|
- ~/.m2:/root/.m2
|
|
|
|
entrypoint: /bin/bash
|