From: Nikita Sobolev Date: Tue, 10 Oct 2023 09:34:48 +0000 (+0300) Subject: gh-107652: Fix CIFuzz typo (#110602) X-Git-Tag: v3.13.0a1~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46462ff929879c72c20b567af7ae3558b4918a50;p=thirdparty%2FPython%2Fcpython.git gh-107652: Fix CIFuzz typo (#110602) --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 848d13fae34e..81e85e630bb0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -83,7 +83,7 @@ jobs: # merged into the main branch; compatibility with older branches may # be broken. FUZZ_RELEVANT_FILES='(\.c$|\.h$|\.cpp$|^configure$|^\.github/workflows/build\.yml$|^Modules/_xxtestfuzz)' - 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 # The tests are pretty slow so they are executed only for PRs # changing relevant files. echo "Run CIFuzz tests"