8000
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 08ec4a1 commit 46462ffCopy full SHA for 46462ff
.github/workflows/build.yml
@@ -83,7 +83,7 @@ jobs:
83
# merged into the main branch; compatibility with older branches may
84
# be broken.
85
FUZZ_RELEVANT_FILES='(\.c$|\.h$|\.cpp$|^configure$|^\.github/workflows/build\.yml$|^Modules/_xxtestfuzz)'
86
- if [ "$GITHUB_BASE_REF" = "main" ] && [ "$(git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qE $FUZZ_RELEVANT_FILES; echo $?)" ]; then
+ if [ "$GITHUB_BASE_REF" = "main" ] && [ "$(git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qE $FUZZ_RELEVANT_FILES; echo $?)" -eq 0 ]; then
87
# The tests are pretty slow so they are executed only for PRs
88
# changing relevant files.
89
echo "Run CIFuzz tests"
0 commit comments