chore: CI: relax check-stage0 check

This commit is contained in:
Sebastian Ullrich 2025-03-20 13:16:43 +01:00 committed by GitHub
parent 99f296a2e7
commit 756fd66745
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,9 +20,7 @@ jobs:
- name: Identify stage0 changes
run: |
git diff "${BASE:-HEAD^}..HEAD" --name-only -- stage0 |
grep -v -x -F $'stage0/src/stdlib_flags.h\nstage0/src/lean.mk.in' \
> "$RUNNER_TEMP/stage0" || true
git diff "${BASE:-HEAD^}..HEAD" --name-only -- stage0/stdlib > "$RUNNER_TEMP/stage0" || true
if test -s "$RUNNER_TEMP/stage0"
then
echo "CHANGES=yes" >> "$GITHUB_ENV"