mirror of https://github.com/krallin/tini.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
563 B
26 lines
563 B
#!/bin/bash |
|
set -o errexit |
|
set -o nounset |
|
|
|
: ${FORCE_SUBREAPER:="1"} |
|
|
|
REL_HERE=$(dirname "${BASH_SOURCE}") |
|
HERE=$(cd "${REL_HERE}"; pwd) |
|
|
|
IMG="tini" |
|
SRC="/tini" |
|
|
|
# Cleanup the build dir |
|
rm -f "${HERE}/dist"/* |
|
|
|
# Create the build image |
|
docker build -t "${IMG}" . |
|
|
|
# Run test without subreaper support, don't copy build files here |
|
docker run -it --rm \ |
|
--volume="${HERE}:${SRC}" \ |
|
-e BUILD_DIR=/tmp/tini-build \ |
|
-e SOURCE_DIR="${SRC}" \ |
|
-e FORCE_SUBREAPER="${FORCE_SUBREAPER}" \ |
|
-e GPG_PASSPHRASE="${GPG_PASSPHRASE}" \ |
|
"${IMG}" "${SRC}/ci/run_build.sh"
|
|
|