From fe99e5dd85f397a18902b28acdd351f7e63e07b5 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Fri, 10 Oct 2025 11:49:15 +0200 Subject: [PATCH] Revert "Let the CI reveal all the error that I do not see locally for compilation cache reasons." This reverts commit 7cea29e899572356129804d6270632b1544c40d8. --- tools/compose/check_stability.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/compose/check_stability.sh b/tools/compose/check_stability.sh index 7552703281..06d76ca0ae 100755 --- a/tools/compose/check_stability.sh +++ b/tools/compose/check_stability.sh @@ -18,7 +18,6 @@ find . -type f -name "*-classes.txt" | while read -r file; do # Check that there is no line containing "unstable class .*State {" if grep -E 'unstable class .*State \{' "$file"; then echo "❌ ERROR: Found unstable State class in $file" - # TEMPORARY CHANGE - # exit 1 + exit 1 fi done