ansible-collection-hetzner-.../.azure-pipelines/scripts/run-tests.sh

35 lines
831 B
Bash
Raw Normal View History

2021-02-03 11:40:48 +00:00
#!/usr/bin/env bash
# Configure the test environment and run the tests.
set -o pipefail -eu
entry_point="$1"
entry_point_args="$2"
2021-02-03 11:40:48 +00:00
read -r -a coverage_branches <<< "$3" # space separated list of branches to run code coverage on for scheduled builds
export COMMIT_MESSAGE
export COMPLETE
export COVERAGE
export IS_PULL_REQUEST
if [ "${SYSTEM_PULLREQUEST_TARGETBRANCH:-}" ]; then
IS_PULL_REQUEST=true
COMMIT_MESSAGE=$(git log --format=%B -n 1 HEAD^2)
2021-02-03 11:40:48 +00:00
else
IS_PULL_REQUEST=false
COMMIT_MESSAGE=$(git log --format=%B -n 1 HEAD)
2021-02-03 11:40:48 +00:00
fi
COMPLETE=false
COVERAGE=false
2021-02-03 11:40:48 +00:00
if [ "${BUILD_REASON}" = "Schedule" ]; then
COMPLETE=true
2021-02-03 11:40:48 +00:00
if printf '%s\n' "${coverage_branches[@]}" | grep -q "^${BUILD_SOURCEBRANCHNAME}$"; then
COVERAGE=true
fi
2021-02-03 11:40:48 +00:00
fi
"${entry_point}" "${entry_point_args}" 2>&1 | "$(dirname "$0")/time-command.py"