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
22 lines
412 B
Bash
Executable File
22 lines
412 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
for SUITE_NAME in $(authelia-scripts suites list); do
|
|
cat << EOF
|
|
- label: ":selenium: ${SUITE_NAME} Suite"
|
|
command: "authelia-scripts --log-level debug suites test ${SUITE_NAME} --headless"
|
|
retry:
|
|
automatic: true
|
|
EOF
|
|
if [[ "${SUITE_NAME}" != "Kubernetes" ]]; then
|
|
cat << EOF
|
|
agents:
|
|
suite: "all"
|
|
EOF
|
|
else
|
|
cat << EOF
|
|
agents:
|
|
suite: "kubernetes"
|
|
EOF
|
|
fi
|
|
done |