authelia/.buildkite/hooks/post-checkout
Amir Zarrinkafsh 2fb20882d9
Utilise Buildkite for Authelia CI/CD (#507)
Publish steps are currently disabled.
2019-12-27 22:07:53 +11:00

17 lines
355 B
Bash
Executable File

#!/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