Skip to content
Snippets Groups Projects
Unverified Commit 6fa3aade authored by Michael Kriese's avatar Michael Kriese Committed by GitHub
Browse files

test: reduce jest memory (#17547)

parent 15ba2655
No related branches found
No related tags found
No related merge requests found
import os from 'os'; import os from 'os';
import v8 from 'v8';
import type { InitialOptionsTsJest } from 'ts-jest/dist/types'; import type { InitialOptionsTsJest } from 'ts-jest/dist/types';
const ci = !!process.env.CI; const ci = !!process.env.CI;
...@@ -8,21 +9,31 @@ type JestConfig = InitialOptionsTsJest & { ...@@ -8,21 +9,31 @@ type JestConfig = InitialOptionsTsJest & {
workerIdleMemoryLimit?: string; workerIdleMemoryLimit?: string;
}; };
const cpus = os.cpus();
const mem = os.totalmem();
const stats = v8.getHeapStatistics();
process.stderr.write(`Host stats:
Cpus: ${cpus.length}
Memory: ${(mem / 1024 / 1024 / 1024).toFixed(2)} GB
HeapLimit: ${(stats.heap_size_limit / 1024 / 1024 / 1024).toFixed(2)} GB
`);
/** /**
* https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources * https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
* Currently it seems the runner only have 4GB
*/ */
function jestGithubRunnerSpecs(): JestConfig { function jestGithubRunnerSpecs(): JestConfig {
if (os.platform() === 'darwin') { // if (os.platform() === 'darwin') {
// // return {
return { // maxWorkers: 2,
maxWorkers: 2, // workerIdleMemoryLimit: '4GB',
workerIdleMemoryLimit: '4GB', // };
}; // }
}
return { return {
maxWorkers: 2, maxWorkers: 2,
workerIdleMemoryLimit: '2GB', workerIdleMemoryLimit: '1500MB', // '2GB',
}; };
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment