From cc7bb306e2c2c00538764b9ae515db183f559e8b Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Thu, 4 Jul 2019 11:53:02 -0300 Subject: Increase CircleCI `addons-linter` memory (#6802) `addons-linter` will occasionally run out of heap space. This provides 3 GB of heap for that script rather than the default ~1.5 GB. The CircleCI containers have 4GB of memory, so this should leave plenty of extra space for non-heap memory. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a69903373..8144aac61 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -284,7 +284,7 @@ jobs: at: . - run: name: test:mozilla-lint - command: npm run mozilla-lint + command: NODE_OPTIONS=--max_old_space_size=3072 npm run mozilla-lint test-integration-flat-firefox: docker: -- cgit