Skip to content

Commit a9040b9

Browse files
authored
Restrict detailed file diff to classlist files (#4268)
* Restrict detailed file diff to classlist files Signed-off-by: Adam Farley <[email protected]> * Skipping JDK builds during PR quality control for tooling folder Nothing inside the tooling directory is tested by the JDK build process, so we shouldn't run the builds as part of PR checks on changes to files within that folder. Signed-off-by: Adam Farley <[email protected]> --------- Signed-off-by: Adam Farley <[email protected]>
1 parent 9b7b18b commit a9040b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
- "build-farm/**"
2222
- "sbin/**"
2323
- "**.sh"
24-
- "!tooling/build_autotriage/**"
24+
- "!tooling/**"
2525
- ".github/workflows/build.yml"
2626
- "security/**"
2727
- "cyclonedx-lib/**"

tooling/reproducible/repro_compare.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ echo "$(date +%T) : diff complete - rc=$rc. Output written to file: ${output}"
8383

8484
cat "${output}"
8585

86-
grep "Files .*" "${output}" | while read -r line; do
86+
grep "Files .*/classlist" "${output}" | while read -r line; do
8787
FILE1=$(echo "$line" | awk '{print $2}')
8888
FILE2=$(echo "$line" | awk '{print $4}')
8989
echo "diff -c on $FILE1 and $FILE2"

0 commit comments

Comments
 (0)