Navigation Menu

Skip to content

Commit

Permalink
tools: dynamically determine parallelism on GitHub Actions macOS
Browse files Browse the repository at this point in the history
Refs: #45340 (comment)
PR-URL: #45350
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
  • Loading branch information
Trott authored and ruyadorno committed Nov 21, 2022
1 parent 6704e78 commit 7c6281a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-macos.yml
Expand Up @@ -58,6 +58,6 @@ jobs:
- name: tools/doc/node_modules workaround
run: make tools/doc/node_modules
- name: Build
run: make build-ci -j3 V=1 CONFIG_FLAGS="--error-on-warn"
run: make build-ci -j$(getconf _NPROCESSORS_ONLN) V=1 CONFIG_FLAGS="--error-on-warn"
- name: Test
run: make run-ci -j3 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"
run: make run-ci -j$(getconf _NPROCESSORS_ONLN) V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"

0 comments on commit 7c6281a

Please sign in to comment.