From 2bbceec45146e4f2594f5604f7335aad00ebc36f Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 1 Sep 2024 16:20:33 +0900 Subject: [PATCH] .github/workflows: skip wasm tests for Windows Updates #3076 --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c79fdc820..3bcb17401 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -168,9 +168,10 @@ jobs: env GOARCH=386 EBITENGINE_DIRECTX=version=12 go test -shuffle=on -v ./... - name: go test (Wasm) - if: runner.os != 'macOS' + if: runner.os == 'Linux' run: | # Wasm tests don't work on macOS with the headless mode enabled, but the headless mode cannot be disabled in GitHub Actions (#2972). + # Wasm tests time out on Windows (#3076). env GOOS=js GOARCH=wasm cleanenv -remove-prefix GITHUB_ -remove-prefix JAVA_ -remove-prefix PSModulePath -remove-prefix STATS_ -remove-prefix RUNNER_ -- go test -shuffle=on -v ./... -test.paniconexit0=false - name: Install ebitenmobile