Skip to content

Commit

Permalink
Don't run tests on MSYS2 in eval-pr
Browse files Browse the repository at this point in the history
At least until we figure out why they fail.

See #2092.
  • Loading branch information
lmoureaux authored and jwrober committed Dec 29, 2023
1 parent cd74a68 commit 0cfb15c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/eval-pr
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 0cfb15c

Please sign in to comment.