mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
93e20a44e9
* feat: build and distribute .deb packages Creates .deb packages for distribution via GitHub releases and Buildkite builds for the following architectures: * amd64 * armhf * arm64 * fix: pkgver reference in debpackages.sh * refactor: split deb packaging jobs and quote variables * fix: pipeline upload for debpackages * fix: depends_on key for debpackages * fix: add depends_on: ~ for debpackages step * fix: pre-artifact hook for debpackages * fix: add .deb suffix in pre-artifact hook * fix: variable reference in debhelper.sh * refactor: silence wget output in debhelper.sh * refactor: make build concurrency gate only depend_on docker builds * refactor: make build concurrency gate also depend_on coverage build * refactor: remove dependencies for build concurrency gate
35 lines
1.2 KiB
Bash
Executable File
35 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set +u
|
|
|
|
if [[ "${BUILDKITE_LABEL}" == ":service_dog: Linting" ]]; then
|
|
cd web && yarn install && cd ../
|
|
fi
|
|
|
|
if [[ "${BUILDKITE_LABEL}" =~ ":selenium:" ]]; then
|
|
DEFAULT_ARCH=coverage
|
|
echo "--- :docker: Extract, load and tag build container"
|
|
buildkite-agent artifact download "authelia-image-${DEFAULT_ARCH}*" .
|
|
zstdcat "authelia-image-${DEFAULT_ARCH}.tar.zst" | docker load
|
|
docker tag authelia/authelia authelia:dist
|
|
fi
|
|
|
|
if [[ "${BUILDKITE_LABEL}" =~ ":docker: Build Image" ]] && [[ "${ARCH}" != "coverage" ]]; then
|
|
echo "--- :react: :swagger: Extract frontend assets"
|
|
buildkite-agent artifact download "authelia-public_html.tar.gz" .
|
|
tar xzf authelia-public_html.tar.gz
|
|
fi
|
|
|
|
if [[ "${BUILDKITE_LABEL}" =~ ":debian: Build Package" ]]; then
|
|
buildkite-agent artifact download "authelia-linux-${ARCH}.tar.gz" .
|
|
fi
|
|
|
|
if [[ "${BUILDKITE_LABEL}" =~ ":docker: Deploy Image" ]]; then
|
|
buildkite-agent artifact download "authelia-image-${ARCH}*" .
|
|
zstdcat "authelia-image-${ARCH}.tar.zst" | docker load
|
|
fi
|
|
|
|
if [[ "${BUILDKITE_LABEL}" == ":github: Deploy Artifacts" ]]; then
|
|
buildkite-agent artifact download "authelia-*.tar.gz*" .
|
|
buildkite-agent artifact download "authelia_*.deb*" .
|
|
fi |