prophunt-garrysmod/test/testBuild.sh

45 lines
1.1 KiB
Bash
Raw Normal View History

2019-10-15 12:40:02 +02:00
#!/bin/bash
readonly SUFFIX="$1"
readonly BUILD_TTT="$(grep -qF -e '--skip-ttt' <<< "$@" && echo false || echo true)"
2021-11-08 19:06:12 +01:00
readonly PUSH="$(grep -qF -e '--push' <<< "$@" && echo true || echo false)"
2021-11-08 18:50:15 +01:00
readonly repository="${DOCKER_REPO:-jusito/docker-ttt}"
2019-10-15 12:40:02 +02:00
if [ "${DEBUGGING}" = "true" ]; then
set -o xtrace
else
DEBUGGING="false"
fi
set -o errexit
set -o nounset
set -o pipefail
2021-11-08 19:06:12 +01:00
function process() {
tag_prefix="$1"
subdir="$2"
cache_option="$(grep -qF -e '--no-cache' <<< "$@" && echo "--no-cache" || echo "")"
2021-11-08 19:06:12 +01:00
docker rmi "$repository:$tag_prefix${SUFFIX}" || true
docker build --target "$subdir" $cache_option -t "$repository:$tag_prefix${SUFFIX}" "$subdir/"
2021-11-08 19:06:12 +01:00
if "$PUSH"; then
docker push "$repository:$tag_prefix${SUFFIX}"
fi
}
2021-11-08 19:21:56 +01:00
echo "[testBuild][INFO] build"
2019-10-15 12:40:02 +02:00
process "lgsm_debian" "lgsm" --no-cache
process "gmod_debian" "gmod"
if "$BUILD_TTT"; then
process "gmod_ttt_debian" "TTT"
fi
2019-10-15 12:40:02 +02:00
2021-11-08 18:19:51 +01:00
docker rmi "$repository:latest${SUFFIX}" || true
docker tag "$repository:gmod_ttt_debian${SUFFIX}" "$repository:latest${SUFFIX}"
2021-11-08 19:06:12 +01:00
if "$PUSH"; then
docker push "$repository:latest${SUFFIX}"
2021-11-08 19:21:56 +01:00
fi
echo "[testBuild][INFO] build done!"