mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-26 03:38:55 +01:00
.github/workflow: disable wasm tests on Windows temporarily
Updates #2982
This commit is contained in:
parent
e5d10c47e7
commit
d37301eeeb
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
@ -165,9 +165,10 @@ jobs:
|
|||||||
env GOARCH=386 EBITENGINE_DIRECTX=version=12 go test -shuffle=on -v ./...
|
env GOARCH=386 EBITENGINE_DIRECTX=version=12 go test -shuffle=on -v ./...
|
||||||
|
|
||||||
- name: go test (Wasm)
|
- name: go test (Wasm)
|
||||||
if: runner.os != 'macOS'
|
if: ${{ runner.os != 'macOS' && runner.os != 'Windows' }}
|
||||||
run: |
|
run: |
|
||||||
# Wasm tests don't work on macOS with the headless mode, and the headless mode doesn't work in GitHub Actions (#2972).
|
# Wasm tests don't work on macOS with the headless mode, and the headless mode doesn't work in GitHub Actions (#2972).
|
||||||
|
# Wasm tests don't work on Windows well due to mysterious timeouts (#2982).
|
||||||
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 ./...
|
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 ./...
|
||||||
|
|
||||||
- name: Install ebitenmobile
|
- name: Install ebitenmobile
|
||||||
|
Loading…
Reference in New Issue
Block a user