41 lines
1.3 KiB
Bash
Executable File
41 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -u
|
|
|
|
DIRECTORY="unset"
|
|
GROUP="unset"
|
|
PREFIX="authelia/"
|
|
TAG="unset"
|
|
|
|
if [[ "${BUILDKITE_BRANCH}" =~ ^renovate/ ]]; then
|
|
TAG="renovate"
|
|
elif [[ "${BUILDKITE_BRANCH}" != "master" ]] && [[ ! "${BUILDKITE_BRANCH}" =~ .*:.* ]]; then
|
|
TAG="${BUILDKITE_BRANCH}"
|
|
elif [[ "${BUILDKITE_BRANCH}" != "master" ]] && [[ "${BUILDKITE_BRANCH}" =~ .*:.* ]]; then
|
|
TAG="PR${BUILDKITE_PULL_REQUEST}"
|
|
elif [[ "${BUILDKITE_BRANCH}" == "master" ]] && [[ "${BUILDKITE_PULL_REQUEST}" == "false" ]]; then
|
|
TAG="latest"
|
|
fi
|
|
|
|
if [[ "${BUILDKITE_PIPELINE_NAME}" == "integration-duo" ]]; then
|
|
DIRECTORY="internal/suites/example/compose/duo-api"
|
|
GROUP="duo-deployments"
|
|
elif [[ "${BUILDKITE_PIPELINE_NAME}" == "integration-haproxy" ]]; then
|
|
DIRECTORY="internal/suites/example/compose/haproxy"
|
|
GROUP="haproxy-deployments"
|
|
elif [[ "${BUILDKITE_PIPELINE_NAME}" == "integration-samba" ]]; then
|
|
DIRECTORY="internal/suites/example/compose/samba"
|
|
GROUP="samba-deployments"
|
|
fi
|
|
|
|
cat << EOF
|
|
steps:
|
|
- label: ":docker: Build and Deploy"
|
|
commands:
|
|
- "cd ${DIRECTORY}"
|
|
- "docker build --tag ${PREFIX}${BUILDKITE_PIPELINE_NAME}:${TAG} --platform linux/amd64 --builder buildx --pull --push ."
|
|
concurrency: 1
|
|
concurrency_group: "${GROUP}"
|
|
agents:
|
|
upload: "fast"
|
|
EOF
|