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 abbd514 commit 31ca3e5Copy full SHA for 31ca3e5
build/int.cloudbuild.yaml
@@ -31,7 +31,7 @@ steps:
31
git diff origin/${_BASE_BRANCH} --name-only > _changed_files
32
sed 's:[^/]*$::' _changed_files > _changed_folders
33
sort -u -o _changed_folders{,}
34
- echo Changed folders:
+ echo Folders with changes:
35
cat _changed_folders
36
37
# Do not prune if changing tests themselves
@@ -49,9 +49,11 @@ steps:
49
fi
50
done
51
52
+ find . -empty -type d -delete
53
+
54
# Report remaining folders
55
echo Folders in scope for tests:
- for d in */; do echo $d; done
56
+ find . -type d -printf '%P\n'
57
58
- id: prepare
59
name: 'gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
0 commit comments