We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1434f08 + e443e38 commit dc0527bCopy full SHA for dc0527b
.github/workflows/common.yml
@@ -89,7 +89,12 @@ jobs:
89
ocamlc -v
90
91
- name: Install Multicore Tests dependencies
92
- run: opam install . --deps-only --with-test
+ run: |
93
+ if [ "$RUNNER_OS" = "macOS" ]; then
94
+ opam install . --deps-only --with-test -j1
95
+ else
96
+ opam install . --deps-only --with-test
97
+ fi
98
99
- name: Set QCHECK_MSG_INTERVAL to reduce noise and keep CI logs tidy
100
run: echo "QCHECK_MSG_INTERVAL=60" >> $GITHUB_ENV
0 commit comments