From 29afc979de04dcda924d4aab2e6454f84a949b1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Thu, 19 Sep 2024 15:26:51 +0200 Subject: [PATCH] ci: Don't install wasm-opt on Windows for web tests --- .github/workflows/test_web.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test_web.yml b/.github/workflows/test_web.yml index 1bb6e3832e19..ca7026a9086b 100644 --- a/.github/workflows/test_web.yml +++ b/.github/workflows/test_web.yml @@ -68,6 +68,9 @@ jobs: # Keep the version number in sync in all workflows, # and in the extension builder Dockerfile! - name: Install wasm-opt + # It runs for a long time, and the build is already slow on Windows, + # where it doesn't have much benefit anyway - most tests are run on Ubuntu. + if: matrix.os != 'windows-latest' uses: sigoden/install-binary@v1 with: repo: WebAssembly/binaryen