test(napi): decrease the worker sizes on Linux x64 musl platform
This commit is contained in:
parent
6a4f4f173d
commit
440bea29f8
1 changed files with 7 additions and 4 deletions
|
@ -16,7 +16,10 @@ const concurrency = process.env.WASI_TEST
|
||||||
? 1
|
? 1
|
||||||
: process.platform === 'win32' ||
|
: process.platform === 'win32' ||
|
||||||
process.platform === 'darwin' ||
|
process.platform === 'darwin' ||
|
||||||
(process.platform === 'linux' && process.arch === 'x64')
|
(process.platform === 'linux' &&
|
||||||
|
process.arch === 'x64' &&
|
||||||
|
// @ts-expect-error
|
||||||
|
process?.report?.getReport()?.header?.glibcVersionRuntime)
|
||||||
? 50
|
? 50
|
||||||
: 10
|
: 10
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue