Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
6fa3aade
Unverified
Commit
6fa3aade
authored
2 years ago
by
Michael Kriese
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
test: reduce jest memory (#17547)
parent
15ba2655
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
jest.config.ts
+19
-8
19 additions, 8 deletions
jest.config.ts
with
19 additions
and
8 deletions
jest.config.ts
+
19
−
8
View file @
6fa3aade
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',
};
};
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment