authelia/.buildkite/hooks/post-checkout
Amir Zarrinkafsh 7a0d217b67
[Buildkite] Reorder git fetch in pipeline (#697)
This will ensure that we always will have up-to-date refs for the repo post-checkout.
2020-03-09 16:53:13 +11:00

17 lines
463 B
Bash
Executable File

#!/bin/bash
set +u
git fetch -q
if [[ ! $BUILDKITE_COMMAND =~ "buildkite-agent pipeline upload" ]] || \
[[ $BUILDKITE_COMMAND == ".buildkite/steps/e2etests.sh | 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