From 79e651886f7b7b7a539f669a299e64a27698b0e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20M=C3=BCller?= Date: Wed, 25 Jan 2023 17:17:06 +0100 Subject: [PATCH] Fix map check excluded warnings in CI Due to changes in wording of the error messages, some of the twmap-check-ddnet warnings were no longer suppressed. Closes #6305. --- .github/workflows/style.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 92a807608..2cb811db3 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -73,8 +73,8 @@ jobs: findings=$(find data -type f -name '*.map' -print0 | xargs -0 ~/.cargo/bin/twmap-check-ddnet 2>&1 | \ grep -v -E "\"data/maps/(ctf|dm).*\.map\": Time cps are missing on the map" | \ grep -v -E "\"data/themes/.*\.map\": Time cps are missing on the map" | \ - grep -v -E "\"data/maps/ctf4\.map\": Map - Image error at index 3 : 'jungle_doodads_old' is not a valid external image in version DDNet06" | \ - grep -v -E "\"data/themes/autumn_night\.map\": Map - Image error at index 3 : 'generic_lamps' is not a valid external image in version DDNet06" | \ + grep -v -E "\"data/maps/ctf4\.map\": Map - In Image at index 3 -> Image 'jungle_doodads_old' is not a valid external image for DDNet06" | \ + grep -v -E "\"data/themes/autumn_night\.map\": Map - In Image at index 3 -> Image 'generic_lamps' is not a valid external image for DDNet06" | \ grep -v -E "\"data/maps7?/Tutorial\.map\": Map setting - Unusual: 'sv_show_others_default'" || true) if [ -n "$findings" ]; then echo "$findings"