Skip to content

Commit 2d24912

Browse files
MylesBorinscodebytere
authored andcommitted
tools: only use 2 cores for macos action
There are only 2 cores available so we shouldn't be using -j8 Refs: https://docs.github.com/en/free-pro-team@latest/actions/reference/specifications-for-github-hosted-runners#supported-runners-and-hardware-resources PR-URL: #36169 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Mary Marchini <[email protected]>
1 parent fcc38a1 commit 2d24912

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-macos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
- name: Environment Information
2626
run: npx envinfo
2727
- name: Build
28-
run: make build-ci -j8 V=1 CONFIG_FLAGS="--error-on-warn --experimental-quic"
28+
run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn --experimental-quic"
2929
- name: Test
30-
run: make run-ci -j8 V=1 TEST_CI_ARGS="-p actions"
30+
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions"

0 commit comments

Comments
 (0)