Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): allocate more memory to fix test_vscode MONGOSH-1892 #2239

Merged
merged 15 commits into from
Nov 22, 2024
Merged
3 changes: 2 additions & 1 deletion testing/test-vscode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ cd vscode
npm install --force
rm -rf node_modules/@mongosh
(cd node_modules && ln -s "$mongosh_root_dir/packages" @mongosh)
npm test
# This test can require a lot of memory so we bump the maximum size.
NODE_OPTIONS=--max-old-space-size=4096 npm test
cd /tmp
rm -rf "$test_root_dir"
Loading