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:
authorbcoe <bencoe@google.com>2021-08-07 00:45:58 +0300
committerNode.js GitHub Bot <github-bot@iojs.org>2021-08-07 18:51:30 +0300
commit5a01efdcb2a90be7660b804e8e2db0974c086cf8 (patch)
tree88d2c303a83769dbbaf05dcc4ef56d57a764e3d3 /.github
parent822f9ff4e6f819cfcf37c043bfddb441197f0723 (diff)
test: increase memory for coverage action
PR-URL: https://github.com/nodejs/node/pull/39690 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/coverage-linux.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/coverage-linux.yml b/.github/workflows/coverage-linux.yml
index 9cc17aa892d..c8b740db801 100644
--- a/.github/workflows/coverage-linux.yml
+++ b/.github/workflows/coverage-linux.yml
@@ -46,6 +46,8 @@ jobs:
run: NODE_V8_COVERAGE=coverage/tmp make test-cov -j2 V=1 TEST_CI_ARGS="-p dots" || exit 0
- name: Report JS
run: npx c8 report --check-coverage
+ env:
+ NODE_OPTIONS: --max-old-space-size=8192
- name: Report C++
run: cd out && gcovr --gcov-exclude='.*\b(deps|usr|out|obj|cctest|embedding)\b' -v -r Release/obj.target --xml -o ../coverage/coverage-cxx.xml --root=$(cd ../ && pwd)
# Clean temporary output from gcov and c8, so that it's not uploaded: