From 80f051f79d8b97aaf05af03b3bdeec9cc1e1f168 Mon Sep 17 00:00:00 2001 From: "Darryl L. Miles" Date: Mon, 30 Sep 2024 23:00:00 +0100 Subject: [PATCH] GHA: CI WASM build use --disable-compression I assume it can't link to libz anyway, you'd need to rebuild libz for WASM target (or use a the Web API for GZIP). --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 055bd2ef..50ae1261 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,7 +48,7 @@ jobs: - name: Build run: | source ./emsdk/emsdk_env.sh - emconfigure ./configure --without-cairo --without-opengl --without-x --disable-readline --target=asmjs-unknown-emscripten + emconfigure ./configure --without-cairo --without-opengl --without-x --disable-readline --disable-compression --target=asmjs-unknown-emscripten emmake make - name: archive wasm bundle uses: actions/upload-artifact@v4