mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-10 14:13:40 +00:00
62 lines
1.4 KiB
Bash
Executable File
62 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# TODO: ONLY BUILD HERE AND PRINT BUILT IMAGE TO STDOUT?
|
|
|
|
set -e
|
|
|
|
export projectRoot="."
|
|
|
|
DO_BUILD=1
|
|
DO_DEPLOY=1
|
|
|
|
while getopts 'bd:' OPTION; do
|
|
case "$OPTION" in
|
|
b)
|
|
echo "skipping build"
|
|
DO_BUILD=0
|
|
;;
|
|
d)
|
|
echo "skipping deployment"
|
|
DO_DEPLOY=0
|
|
;;
|
|
?)
|
|
echo "script usage: $(basename \$0) [-b] [-d] [-t]" >&2
|
|
echo "-b skip build"
|
|
echo "-d skip deployment"
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
shift "$(($OPTIND -1))"
|
|
|
|
if [ "$DO_BUILD" -eq "1" ]; then
|
|
# build the zitadel binary
|
|
GOOS="linux" GOARCH="amd64" goreleaser build --snapshot --single-target --rm-dist
|
|
fi
|
|
|
|
# extract some metadata for building and tagging the docker image
|
|
function extract_metadata ()
|
|
{
|
|
cat .artifacts/goreleaser/$1 | jq -r $2
|
|
}
|
|
BUILD_DATE="$(extract_metadata metadata.json '.date')"
|
|
|
|
# Use simple local date
|
|
BUILD_DATE="${BUILD_DATE%.*}"
|
|
# Replace colons and plus signs
|
|
export BUILD_DATE="${BUILD_DATE//:/_}"
|
|
|
|
|
|
if [ "$DO_BUILD" -eq "1" ]; then
|
|
BUILD_PATH="$(dirname $(extract_metadata artifacts.json '.[0].path'))"
|
|
BUILD_VERSION="$(extract_metadata metadata.json '.version')"
|
|
|
|
# build the docker image
|
|
DOCKER_BUILDKIT=1 docker build --file ./build/Dockerfile --tag zitadel:latest --tag zitadel:$BUILD_VERSION --tag zitadel:$BUILD_DATE $BUILD_PATH
|
|
fi
|
|
|
|
if [ "$DO_DEPLOY" -eq "1" ]; then
|
|
# run cockroach and zitadel
|
|
./e2e/docker-compose.sh up --build --detach
|
|
fi
|