-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The Github Actions CI pipeline fails on MacOS because `ulimit -t "10s"` unexpectedly causes the error `Cputime limit exceeded: 24`. This is likely because of breaking changes with the upgraded MacOS image `12.7.3 -> 14.4.1`. The `timeout` command is used instead to ensure the timeout applies to each test case separately. This does increase the reported test runtime since extra sub-processes have to be spawned specifically for that `timeout` command to work. `coreutils` is now required on MacOS to run `TEST.sh`. It can be installed using `brew install coreutils`.
- Loading branch information
Showing
2 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters