From 97fe8bacb17e03dff22ebdfb5b2bb3dcf9d960e9 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 6 Nov 2022 11:56:25 -0800 Subject: [PATCH] tools: increase macOS cores to 3 on GitHub CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In efbec85f30d8d1bf0688dcf11198820b8f275d2c, we reduced the cores to 2 based on GitHub documentation. The documentation now says that there are 3 cores. Refs: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources PR-URL: https://github.com/nodejs/node/pull/45340 Reviewed-By: Yagiz Nizipli Reviewed-By: Michaƫl Zasso Reviewed-By: Antoine du Hamel --- .github/workflows/test-macos.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index 787256ad6f4017..092de3885ab336 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -52,12 +52,12 @@ jobs: # The `npm ci` for this step fails a lot as part of the Test step. Run it # now so that we don't have to wait 2 hours for the Build step to pass # first before that failure happens. (And if there's something about - # `make run-ci -j2` that is causing the failure and the failure doesn't + # `make run-ci -j3` that is causing the failure and the failure doesn't # happen anymore running this step here first, that's also useful # information.) - name: tools/doc/node_modules workaround run: make tools/doc/node_modules - name: Build - run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn" + run: make build-ci -j3 V=1 CONFIG_FLAGS="--error-on-warn" - name: Test - run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9" + run: make run-ci -j3 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"