Skip to content

Commit 3260254

Browse files
saschanazkripken
authored andcommitted
reduce core count to 4 (#5879)
...to prevent `test_failing_alloc` failure. See #5842 (comment)
1 parent a5b2b51 commit 3260254

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ test-defaults: &test-defaults
1717
apt-get install -y python python-pip cmake build-essential openjdk-9-jre-headless
1818
pip install --upgrade pip
1919
pip install lit
20-
EMCC_CORES=8 python emscripten/tests/runner.py $TEST_TARGET skip:ALL.test_sse1_full skip:ALL.test_sse2_full skip:ALL.test_sse3_full skip:ALL.test_ssse3_full skip:ALL.test_sse4_1_full skip:other.test_native_link_error_message skip:other.test_bad_triple
20+
EMCC_CORES=4 python emscripten/tests/runner.py $TEST_TARGET skip:ALL.test_sse1_full skip:ALL.test_sse2_full skip:ALL.test_sse3_full skip:ALL.test_ssse3_full skip:ALL.test_sse4_1_full skip:other.test_native_link_error_message skip:other.test_bad_triple
2121
2222
version: 2
2323
jobs:
@@ -38,7 +38,7 @@ jobs:
3838
popd
3939
echo EMSCRIPTEN_ROOT="'~/emscripten/'" >> .emscripten
4040
echo BINARYEN_ROOT="''" >> .emscripten
41-
EMCC_CORES=8 python2 emscripten/embuilder.py build ALL
41+
EMCC_CORES=4 python2 emscripten/embuilder.py build ALL
4242
python2 emscripten/tests/runner.py test_hello_world
4343
4444
- persist_to_workspace:

0 commit comments

Comments
 (0)