-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathrun_conditional_tests.sh
More file actions
executable file
·157 lines (135 loc) · 5.54 KB
/
Copy pathrun_conditional_tests.sh
File metadata and controls
executable file
·157 lines (135 loc) · 5.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#!/bin/bash
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This script requires the following environment variables to be set:
# `BUILD_TYPE` should be one of ["presubmit", "continuous"]
# `TEST_TYPE` should be one of ["docs", "docfx", "prerelease", "unit"]
# or match the name of the nox session that you want to run.
# `PY_VERSION` should be one of ["3.10", "3.11", "3.12"]
# `TEST_TYPE` and `PY_VERSION` are required by the script `ci/run_single_test.sh`
# This script will determine which directories have changed
# under the `packages` folder. For `BUILD_TYPE=="presubmit"`,
# we'll compare against the `packages` folder in HEAD,
# whereas for `BUILD_TYPE=="continuous"` we'll compare changes
# with HEAD~1. For all directories that have changed files, we will
# run the script located at `${PROJECT_ROOT}/ci/run_single_test.sh`.
# `-e` enables the script to automatically fail when a command fails
# `-o pipefail` sets the exit code to non-zero if any command fails,
# or zero if all commands in the pipeline exit successfully.
set -eo pipefail
export PROJECT_ROOT=$(realpath $(dirname "${BASH_SOURCE[0]}")/..)
TARGET_BRANCH="${TARGET_BRANCH:-main}"
# Redirect git clones for core dependencies to the local repository.
# This serves two purposes:
# 1. Performance: Avoids repeated 100MB+ downloads of the monorepo for each dependency.
# 2. Correctness: Ensures that changes in core packages (like google-api-core) are
# tested against downstream packages in the same Pull Request.
git config --global url."${PROJECT_ROOT}".insteadOf "https://github.com/googleapis/google-cloud-python"
git config --global url."${PROJECT_ROOT}".insteadOf "https://github.com/googleapis/google-cloud-python.git"
# A script file for running the test in a sub project.
test_script="${PROJECT_ROOT}/ci/run_single_test.sh"
if [ -n "${PACKAGE_LIST}" ]; then
echo "Using provided PACKAGE_LIST"
to_test=(${PACKAGE_LIST})
RETVAL=0
for d in ${to_test[@]}; do
echo "running test in ${d}"
pushd ${d}
set +e
# Ensure unique coverage file per package to avoid DataError
# when combining statement and branch coverage.
# Strip trailing slash from directory name for the filename.
pkg_name_clean=$(echo ${d} | sed 's|/$||' | sed 's|/|_|g')
export COVERAGE_FILE="${PROJECT_ROOT}/.coverage.${PY_VERSION}.${pkg_name_clean}"
${test_script}
ret=$?
set -e
if [ ${ret} -ne 0 ]; then
RETVAL=${ret}
fi
popd
done
exit ${RETVAL}
fi
if [[ ${BUILD_TYPE} == "presubmit" ]]; then
# For presubmit build, we want to know the difference from the
# common commit in the target branch.
GIT_DIFF_ARG="origin/$TARGET_BRANCH..."
# Then fetch enough history for finding the common commit.
git fetch origin "$TARGET_BRANCH" --deepen=200 || true
elif [[ ${BUILD_TYPE} == "continuous" ]]; then
# For continuous build, we want to know the difference in the last
# commit. This assumes we use squash commit when merging PRs.
GIT_DIFF_ARG="HEAD~.."
# Then fetch one last commit for getting the diff.
git fetch origin "$TARGET_BRANCH" --deepen=1 || true
else
# Run everything.
GIT_DIFF_ARG=""
fi
# Sharding logic (fallback for manual runs)
subdirs=(
packages
)
TOTAL_SHARDS="${TOTAL_SHARDS:-1}"
SHARD_INDEX="${SHARD_INDEX:-1}"
count=0
RETVAL=0
for subdir in ${subdirs[@]}; do
# Sort the directories to ensure consistent sharding across jobs
for d in `ls -d ${subdir}/*/ | sort`; do
# Sharding logic: only process directories that belong to this shard
if (( count % TOTAL_SHARDS != SHARD_INDEX - 1 )); then
((++count))
continue
fi
((++count))
should_test=false
if [ -n "${GIT_DIFF_ARG}" ]; then
echo "checking changes with 'git diff --quiet ${GIT_DIFF_ARG} ${d}'"
set +e
git diff --quiet ${GIT_DIFF_ARG} ${d}
changed=$?
set -e
if [[ "${changed}" -eq 0 ]]; then
echo "no change detected in ${d}, skipping"
else
echo "change detected in ${d}"
should_test=true
fi
else
# If GIT_DIFF_ARG is empty, run all the tests.
should_test=true
fi
if [ "${should_test}" = true ]; then
echo "running test in ${d}"
pushd ${d}
# Temporarily allow failure.
set +e
# Ensure unique coverage file per package to avoid DataError
# when combining statement and branch coverage.
# Strip trailing slash from directory name for the filename.
pkg_name_clean=$(echo ${d} | sed 's|/$||' | sed 's|/|_|g')
export COVERAGE_FILE="${PROJECT_ROOT}/.coverage.${PY_VERSION}.${pkg_name_clean}"
${test_script}
ret=$?
set -e
if [ ${ret} -ne 0 ]; then
RETVAL=${ret}
fi
popd
fi
done
done
exit ${RETVAL}