Skip to content

Commit 02b11ff

Browse files
committed
catch node failures
1 parent d5dfb61 commit 02b11ff

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ jobs:
227227
- name: Build and test xeus-cpp in node, then install
228228
shell: bash -l {0}
229229
run: |
230+
set -e
230231
micromamba create -f environment-wasm-host.yml \
231232
--platform=emscripten-wasm32 \
232233
-c https://prefix.dev/emscripten-forge-4x \

test/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ if(EMSCRIPTEN)
6868
PUBLIC "SHELL: -s WASM_BIGINT"
6969
PUBLIC "SHELL: -s ASSERTIONS=0"
7070
PUBLIC "SHELL: -s ALLOW_MEMORY_GROWTH=1"
71-
PUBLIC "SHELL: -s STACK_SIZE=32mb"
72-
PUBLIC "SHELL: -s INITIAL_MEMORY=64MB"
71+
PUBLIC "SHELL: -s STACK_SIZE=64mb"
72+
PUBLIC "SHELL: -s INITIAL_MEMORY=32MB"
7373
PUBLIC "SHELL: --preload-file ${ESCAPED_SYSROOT_PATH}/include@/include"
7474
PUBLIC "SHELL: --preload-file ../${XEUS_CPP_DATA_DIR}@/share/xeus-cpp"
7575
PUBLIC "SHELL: --preload-file ../${XEUS_CPP_CONF_DIR}@/etc/xeus-cpp"

0 commit comments

Comments
 (0)