Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@github.com>2020-11-19 00:38:11 +0300
committerMyles Borins <mylesborins@github.com>2020-11-20 03:14:03 +0300
commitefbec85f30d8d1bf0688dcf11198820b8f275d2c (patch)
treeb055fc15b2454efcd984e0fe9f3f7284357cdc67 /.github
parent2d167f0dc785f68272d9f7f8a5ad8e64fc71cc70 (diff)
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: https://github.com/nodejs/node/pull/36169 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Mary Marchini <oss@mmarchini.me>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test-macos.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml
index 5c5f2b2a195..08e6e91e8f4 100644
--- a/.github/workflows/test-macos.yml
+++ b/.github/workflows/test-macos.yml
@@ -25,6 +25,6 @@ jobs:
- name: Environment Information
run: npx envinfo
- name: Build
- run: make build-ci -j8 V=1 CONFIG_FLAGS="--error-on-warn --experimental-quic"
+ run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn --experimental-quic"
- name: Test
- run: make run-ci -j8 V=1 TEST_CI_ARGS="-p actions"
+ run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions"