File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,11 @@ executors:
10
10
linux-python :
11
11
docker :
12
12
- image : cimg/python:3.10.7
13
- environment :
14
- EMCC_CORES : " 4"
15
13
focal :
16
14
docker :
17
15
- image : emscripten/emscripten-ci:focal
18
16
environment :
19
17
LANG : " C.UTF-8"
20
- EMCC_CORES : " 4"
21
18
EMSDK_NOTTY : " 1"
22
19
EMTEST_WASI_SYSROOT : " ~/wasi-sdk/wasi-sysroot"
23
20
EMTEST_BUILD_VERBOSE : " 2"
@@ -214,6 +211,7 @@ commands:
214
211
# Must be absolute path or relative path from working_directory
215
212
at : ~/
216
213
- checkout
214
+ - run : python3 -c "import multiprocessing; print(multiprocessing.cpu_count())"
217
215
- run :
218
216
name : submodule update
219
217
command : git submodule update --init
@@ -456,10 +454,10 @@ jobs:
456
454
# we want it to finish asap
457
455
resource_class : xlarge
458
456
environment :
459
- EMCC_CORES : 16
460
457
EMCC_USE_NINJA : 1
461
458
steps :
462
459
- checkout
460
+ - run : python3 -c "import multiprocessing; print(multiprocessing.cpu_count())"
463
461
- run :
464
462
name : get wasmer
465
463
command : |
@@ -662,8 +660,8 @@ jobs:
662
660
test-wasm64-4gb :
663
661
environment :
664
662
LANG : " C.UTF-8"
665
- # Only run 2 tests at a time to avoid OOM (since each test used >4gb)
666
- EMCC_CORES : " 2 "
663
+ # Only run 4 tests at a time to avoid OOM (since each test used >4gb)
664
+ EMCC_CORES : 4
667
665
# We don't use `bionic` here since its too old to run recent node versions:
668
666
# `/lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found`
669
667
executor : linux-python
You can’t perform that action at this time.
0 commit comments