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 danielleadams committed Jan 3, 2023
1 parent 221f298 commit 6fafec3
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 6fafec3

Please sign in to comment.