We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85ab92f commit 7e94b4dCopy full SHA for 7e94b4d
.kokoro/system.sh
@@ -139,11 +139,11 @@ for path in `find 'packages' \
139
package_modified=$(git diff "${KOKORO_GITHUB_PULL_REQUEST_TARGET_BRANCH}...${KOKORO_GITHUB_PULL_REQUEST_COMMIT}" -- ${files_to_check} | wc -l)
140
set -e
141
142
- if [[ "${package_modified}" -gt 0 ]]; then
+ if [[ "${package_modified}" -gt 0 || "$KOKORO_BUILD_ARTIFACTS_SUBDIR" == *"continuous"* ]]; then
143
# Call the function - its internal exports won't affect the next loop
144
run_package_test "$package_name" || RETVAL=$?
145
else
146
- echo "No changes in ${package_name}, skipping."
+ echo "No changes in ${package_name} and not a continuous build, skipping."
147
fi
148
done
149
exit ${RETVAL}
0 commit comments