mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
2fb20882d9
Publish steps are currently disabled.
17 lines
426 B
Bash
Executable File
17 lines
426 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
for SUITE_NAME in $(authelia-scripts suites list);
|
|
do
|
|
echo " - label: \":selenium: ${SUITE_NAME} Suite\""
|
|
echo " commands:"
|
|
echo " - \"authelia-scripts --log-level debug suites test ${SUITE_NAME} --headless\""
|
|
if [[ "${SUITE_NAME}" != "Kubernetes" ]];
|
|
then
|
|
echo " agents:"
|
|
echo " "suite: all""
|
|
else
|
|
echo " agents:"
|
|
echo " "suite: kubernetes""
|
|
fi
|
|
done |