Skip to content

Commit e3c15ca

Browse files
committed
Undo the change that triggered windows-build-skip condition
1 parent b921127 commit e3c15ca

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/reusable-change-detection.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ jobs:
119119
120120
CHANGED_FILES=$(git diff --name-only "origin/$GITHUB_BASE_REF..")
121121
# Check if changes are ONLY in configure/Makefile files
122-
if echo "$CHANGED_FILES" | grep -v "build.yml\|reusable-change-detection.yml" | grep -qE '^(configure.*|Makefile.*|.*\.m4)$' && \
123-
! echo "$CHANGED_FILES" | grep -v "build.yml\|reusable-change-detection.yml" | grep -qvE '^(configure.*|Makefile.*|.*\.m4)$'; then
122+
if echo "$CHANGED_FILES" | grep -qE '^(configure.*|Makefile.*|.*\.m4)$' && \
123+
! echo "$CHANGED_FILES" | grep -qvE '^(configure.*|Makefile.*|.*\.m4)$'; then
124124
# Only configure/Makefile files changed, skip Windows CI
125125
echo "run-windows=false" >> "$GITHUB_OUTPUT"
126126
else

configure

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)