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
committerShelley Vohr <shelley.vohr@gmail.com>2020-11-23 00:16:07 +0300
commit2d2491284ea926b62ee7473cc4a7f9e8b717f8ca (patch)
tree0ad3386f4c78147a8398c7d5ba02a3d83aa46ef6 /.github
parentfcc38a131292e77733eb8c5a6ef1456ddacdda85 (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"