Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/julia-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,9 @@ jobs:
- shell: julia --color=yes {0}
run: |
using Pkg
Pkg.test("HiGHS")
# HiGHS uses (N+1)/2 threads. HiGHS.jl parallelises the tests and, in
# the default setting, it may use up to 4 parallel jobs. This means
# HiGHS may attempt to start up to 2(N+1) threads and we get unhandled
# exceptions on macOS and a SIGTERM on linux. To avoid these errors,
# opt out of running the tests in parallel.
Pkg.test("HiGHS"; test_args=["--parallel=false"])
Loading