Skip to content

Commit

Permalink
.github/workflows: skip Wasm tests with Go 1.17
Browse files Browse the repository at this point in the history
Go 1.17 and wasmbrowsertests didn't work well on GitHub Actions so far.
e.g. https://github.com/hajimehoshi/ebiten/actions/runs/4232361717/jobs/7353404261
  • Loading branch information
hajimehoshi committed Feb 21, 2023
1 parent ade7b8c commit 74210b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
- name: go test (Wasm)
# TODO: Investigate times out on Windows. (#1313)
if: ${{ !startsWith(matrix.os, 'windows-') && !startsWith(matrix.go, '1.15.') && !startsWith(matrix.go, '1.16.') }}
if: ${{ !startsWith(matrix.os, 'windows-') && !startsWith(matrix.go, '1.15.') && !startsWith(matrix.go, '1.16.') && !startsWith(matrix.go, '1.17.') }}
run: |
# TODO: Add -shuffle=on after agnivade/wasmbrowsertest#23 is fixed.
env GOOS=js GOARCH=wasm go test -tags=example -v ./...
Expand Down

0 comments on commit 74210b0

Please sign in to comment.