⚙️ Compact Variants Logic into build-all.sh

This commit is contained in:
Christian Mäder 2018-03-05 14:36:24 +01:00
parent e3120a715e
commit 36f79b3ffe
No known key found for this signature in database
GPG key ID: 92FFD0A711F196BB
4 changed files with 61 additions and 16 deletions

60
build-all.sh Executable file
View file

@ -0,0 +1,60 @@
#!/bin/bash
# Builds all Docker images this project provides
VARIANTS=("" "ldap")
if [ ! -z "${DEBUG}" ]; then
export DEBUG
fi
ERROR=0
# Don't build if not on `master` and don't build if on a pull request,
# but build when DEBUG is not empty
if [ ! -z "${DEBUG}" ] || \
( [ "$TRAVIS_BRANCH" = "master" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ] ); then
for VARIANT in "${VARIANTS[@]}"; do
export VARIANT
# Checking which VARIANT to build
if [ -z "$VARIANT" ]; then
DOCKERFILE="Dockerfile"
else
DOCKERFILE="Dockerfile.${VARIANT}"
# Fail fast
if [ ! -f "${DOCKERFILE}" ]; then
echo "🚨 The Dockerfile '${DOCKERFILE}' for variant '${VARIANT}' doesn't exist."
ERROR=1
if [ -z "$DEBUG" ]; then
continue
else
echo "⚠️ Would skip this, but DEBUG is enabled."
fi
fi
fi
echo "🛠 Building '$DOCKERFILE'"
# build the latest release
# shellcheck disable=SC2068
./build-latest.sh $@
# build the latest pre-release
# shellcheck disable=SC2068
PRERELEASE=true ./build-latest.sh $@
# build all branches
# shellcheck disable=SC2068
./build-branches.sh $@
# special build
# shellcheck disable=SC2068
SRC_ORG=lampwins TAG=webhooks-backend ./build.sh "feature/webhooks-backend" $@
done
else
echo "❎ Not building anything."
fi
exit $ERROR