From 378f2db5ae10d8fff737dfc908d8b61db6ae4892 Mon Sep 17 00:00:00 2001 From: Ruben Perez Date: Fri, 19 Sep 2025 13:52:04 +0200 Subject: [PATCH] Remove unsupported --experimental-wasm-threads --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9037c2db..34d9a30e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -365,10 +365,10 @@ jobs: run: | source ../emsdk/emsdk_env.sh emcc -pthread -s EXIT_RUNTIME=1 -s PTHREAD_POOL_SIZE=32 -I. -O3 -o config_info_pthread libs/config/test/config_info.cpp - node --experimental-wasm-threads config_info_pthread + node config_info_pthread - name: Test config_test (pthread) working-directory: ../boost-root run: | source ../emsdk/emsdk_env.sh emcc -pthread -s EXIT_RUNTIME=1 -s PTHREAD_POOL_SIZE=32 -s DISABLE_EXCEPTION_CATCHING=0 -I. -O3 -o config_test_pthread libs/config/test/config_test.cpp - node --experimental-wasm-threads config_test_pthread + node config_test_pthread