mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
17 lines
355 B
Plaintext
17 lines
355 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set +u
|
||
|
|
||
|
if [[ ! $BUILDKITE_COMMAND =~ "buildkite-agent pipeline upload" ]];
|
||
|
then
|
||
|
echo "--- :buildkite: Setting up Build environment"
|
||
|
source bootstrap.sh
|
||
|
if [[ $BUILDKITE_COMMAND == "authelia-scripts --log-level debug ci" ]];
|
||
|
then
|
||
|
go mod download
|
||
|
fi
|
||
|
if [[ $BUILDKITE_LABEL =~ ":selenium:" ]];
|
||
|
then
|
||
|
go mod download
|
||
|
fi
|
||
|
fi
|