mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
1ab2a5f1bc
* Add default license header to files which have no copyright or license header yet. * yml extension should have been xml...
38 lines
1,000 B
Bash
Executable file
38 lines
1,000 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# Configure the test environment and run the tests.
|
|
|
|
set -o pipefail -eu
|
|
|
|
entry_point="$1"
|
|
test="$2"
|
|
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)
|
|
else
|
|
IS_PULL_REQUEST=
|
|
COMMIT_MESSAGE=$(git log --format=%B -n 1 HEAD)
|
|
fi
|
|
|
|
COMPLETE=
|
|
COVERAGE=
|
|
|
|
if [ "${BUILD_REASON}" = "Schedule" ]; then
|
|
COMPLETE=yes
|
|
|
|
if printf '%s\n' "${coverage_branches[@]}" | grep -q "^${BUILD_SOURCEBRANCHNAME}$"; then
|
|
COVERAGE=yes
|
|
fi
|
|
fi
|
|
|
|
"${entry_point}" "${test}" 2>&1 | "$(dirname "$0")/time-command.py"
|