We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 815bb1e commit c70c458Copy full SHA for c70c458
build/int.cloudbuild.yaml
@@ -30,12 +30,12 @@ steps:
30
git fetch --unshallow
31
git diff origin/${_BASE_BRANCH} --name-only > _changed_files
32
sed 's:[^/]*$::' _changed_files > _changed_folders
33
- sort -u _changed_folders
+ sort -u -o _changed_folders{,}
34
echo Changed folders:
35
cat _changed_folders
36
37
# Do not prune if changing tests themselves
38
- _INFRA_FOLDERS="build test .github"
+ _INFRA_FOLDERS="build test/ .github/"
39
for d in _changed_folders; do
40
if [[ "${_INFRA_FOLDERS}" =~ "$d" ]]; then
41
echo "Infrastructure folders have changed; no tests will be pruned."
0 commit comments