Skip to content

Commit

Permalink
tools: dynamically determine parallelism on GitHub Actions macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Trott committed Nov 7, 2022
1 parent 82615fd commit 58b2bbb
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 58b2bbb

Please sign in to comment.