mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
b70c4a744f
* [Buildkite] Ignore build and deploy steps for [DOCS] only based commits * [Buildkite] Convert static pipelines into dynamic pipelines * [Buildkite] Convert dynamic pipeline steps into heredocs * [Buildkite] Fix indentation for aurpackages.sh * [Buildkite] Rename docs bypass env variable * [Buildkite] Fix automatic retries in integration tests
18 lines
473 B
Bash
Executable File
18 lines
473 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
for BUILD_ARCH in amd64 arm32v7 arm64v8; do
|
|
cat << EOF
|
|
- label: ":docker: Build Image [${BUILD_ARCH}]"
|
|
command: "authelia-scripts docker build --arch=${BUILD_ARCH}"
|
|
agents:
|
|
build: "true"
|
|
artifact_paths:
|
|
- "authelia-image-${BUILD_ARCH}.tar.zst"
|
|
- "authelia-linux-${BUILD_ARCH}.tar.gz"
|
|
- "authelia-linux-${BUILD_ARCH}.tar.gz.sha256"
|
|
env:
|
|
ARCH: "${BUILD_ARCH}"
|
|
key: "build-docker-${BUILD_ARCH}"
|
|
EOF
|
|
done |