blob: edaca749b8fa87c3c45a23f1152d8564787cf662 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
#!/usr/bin/env 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_LABEL}" == ":hammer_and_wrench: Unit Test" ]] || [[ "${BUILDKITE_LABEL}" =~ ":selenium:" ]]; then
    go mod download
  fi
fi
  |