57 lines
1.5 KiB
YAML
57 lines
1.5 KiB
YAML
version: "3"
|
|
|
|
services:
|
|
|
|
runtime-setup:
|
|
image: netty:default
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.centos6
|
|
|
|
common: &common
|
|
image: netty:default
|
|
depends_on: [runtime-setup]
|
|
volumes:
|
|
- ~/.ssh:/root/.ssh:delegated
|
|
- ~/.gnupg:/root/.gnupg:delegated
|
|
- ..:/code:delegated
|
|
working_dir: /code
|
|
|
|
build-leak:
|
|
<<: *common
|
|
command: /bin/bash -cl "./mvnw -Pleak clean install -Dio.netty.testsuite.badHost=netty.io"
|
|
|
|
build:
|
|
<<: *common
|
|
command: /bin/bash -cl "./mvnw clean install -Dio.netty.testsuite.badHost=netty.io"
|
|
|
|
deploy:
|
|
<<: *common
|
|
volumes:
|
|
- ~/.ssh:/root/.ssh
|
|
- ~/.gnupg:/root/.gnupg
|
|
- ~/.m2/settings.xml:/root/.m2/settings.xml
|
|
- ..:/code
|
|
command: /bin/bash -cl "./mvnw clean deploy -DskipTests=true"
|
|
|
|
test-leak:
|
|
<<: *common
|
|
command: /bin/bash -cl "./mvnw -Pleak clean install -Dio.netty.testsuite.badHost=netty.io -Dmaven.wagon.http.pool=false"
|
|
|
|
test:
|
|
<<: *common
|
|
command: /bin/bash -cl "./mvnw clean install -Dio.netty.testsuite.badHost=netty.io -Dmaven.wagon.http.pool=false"
|
|
|
|
test-boringssl-static:
|
|
<<: *common
|
|
command: /bin/bash -cl "./mvnw -P boringssl clean install -Dio.netty.testsuite.badHost=netty.io -Dxml.skip=true -Dmaven.wagon.http.pool=false"
|
|
|
|
shell:
|
|
<<: *common
|
|
volumes:
|
|
- ~/.ssh:/root/.ssh:delegated
|
|
- ~/.gnupg:/root/.gnupg:delegated
|
|
- ..:/code:delegated
|
|
- ~/.m2:/root/.m2:delegated
|
|
entrypoint: /bin/bash
|