95b96126c3
Motivation: We should just use GitHub Actions for the CI Modifications: - Adjust docker / docker compose files - Add different workflows and jobs to deploy and build the project Result: Don't depend on external CI services
30 lines
556 B
YAML
30 lines
556 B
YAML
version: "3"
|
|
|
|
services:
|
|
|
|
runtime-setup:
|
|
image: netty:centos-6-1.15
|
|
build:
|
|
args:
|
|
# use zulu and not adoptjdk for now as adoptjdk15 does not support centos6
|
|
# https://github.com/AdoptOpenJDK/openjdk-build/issues/2097
|
|
java_version : "zulu@1.15.0-1"
|
|
|
|
build:
|
|
image: netty:centos-6-1.15
|
|
|
|
build-leak:
|
|
image: netty:centos-6-1.15
|
|
|
|
test:
|
|
image: netty:centos-6-1.15
|
|
|
|
test-leak:
|
|
image: netty:centos-6-1.15
|
|
|
|
test-boringssl-static:
|
|
image: netty:centos-6-1.15
|
|
|
|
shell:
|
|
image: netty:centos-6-1.15
|