Skip to content

Commit 7e94b4d

Browse files
committed
tests: run all system tests in continous build job
1 parent 85ab92f commit 7e94b4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.kokoro/system.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,11 @@ for path in `find 'packages' \
139139
package_modified=$(git diff "${KOKORO_GITHUB_PULL_REQUEST_TARGET_BRANCH}...${KOKORO_GITHUB_PULL_REQUEST_COMMIT}" -- ${files_to_check} | wc -l)
140140
set -e
141141

142-
if [[ "${package_modified}" -gt 0 ]]; then
142+
if [[ "${package_modified}" -gt 0 || "$KOKORO_BUILD_ARTIFACTS_SUBDIR" == *"continuous"* ]]; then
143143
# Call the function - its internal exports won't affect the next loop
144144
run_package_test "$package_name" || RETVAL=$?
145145
else
146-
echo "No changes in ${package_name}, skipping."
146+
echo "No changes in ${package_name} and not a continuous build, skipping."
147147
fi
148148
done
149149
exit ${RETVAL}

0 commit comments

Comments
 (0)