From 0cfb15cf0fd3231fc3c8b95cbd1dee04c0a8bd54 Mon Sep 17 00:00:00 2001 From: Louis Moureaux Date: Wed, 27 Dec 2023 18:46:30 +0100 Subject: [PATCH] Don't run tests on MSYS2 in eval-pr At least until we figure out why they fail. See #2092. --- scripts/eval-pr | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/eval-pr b/scripts/eval-pr index 466246a8fe..7896cb9a77 100755 --- a/scripts/eval-pr +++ b/scripts/eval-pr @@ -147,8 +147,10 @@ debug_eval () -DCMAKE_INSTALL_PREFIX=$PWD/build_$pull_request/install \ -DCMAKE_BUILD_TYPE=Debug cmake --build build_$pull_request - # Run tests - cmake --build build_$pull_request --target test + + # Run tests except on MSYS2 (they fail) + [[ $MSYSTEM ]] || cmake --build build_$pull_request --target test + # Always test the installer cmake --build build_$pull_request --target install