Skip to content

Commit dc0527b

Browse files
authored
Merge pull request #198 from shym/ci-jobs
CI: Limit the parallelism on macOS runners
2 parents 1434f08 + e443e38 commit dc0527b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/common.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,12 @@ jobs:
8989
ocamlc -v
9090
9191
- name: Install Multicore Tests dependencies
92-
run: opam install . --deps-only --with-test
92+
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
9398
9499
- name: Set QCHECK_MSG_INTERVAL to reduce noise and keep CI logs tidy
95100
run: echo "QCHECK_MSG_INTERVAL=60" >> $GITHUB_ENV

0 commit comments

Comments
 (0)