mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
.github/worksflows: Bug fix: wasmbrowsertest doesn't support -shuffle yet
This commit is contained in:
parent
3cb5f78036
commit
683da479c7
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
@ -91,19 +91,13 @@ jobs:
|
||||
run: |
|
||||
go test -tags=example -shuffle=on -v ./...
|
||||
|
||||
- name: go test (Wasm, Go 1.16 or older)
|
||||
# TODO: Investigate times out on Windows. (#1313)
|
||||
if: ${{ !startsWith(matrix.os, 'windows-') && (startsWith(matrix.go, '1.15.') || startsWith(matrix.go, '1.16.')) }}
|
||||
run: |
|
||||
env GOOS=js GOARCH=wasm go test -tags=example -v ./...
|
||||
env GOOS=js GOARCH=wasm go test -tags=example,ebitenwebgl1 -v ./...
|
||||
|
||||
- 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.') }}
|
||||
run: |
|
||||
env GOOS=js GOARCH=wasm go test -tags=example -shuffle=on -v ./...
|
||||
env GOOS=js GOARCH=wasm go test -tags=example,ebitenwebgl1 -shuffle=on -v ./...
|
||||
# TODO: Add -shuffle=on after agnivade/wasmbrowsertest#23 is fixed.
|
||||
env GOOS=js GOARCH=wasm go test -tags=example -v ./...
|
||||
env GOOS=js GOARCH=wasm go test -tags=example,ebitenwebgl1 -v ./...
|
||||
|
||||
- name: Install ebitenmobile
|
||||
run: |
|
||||
|
Loading…
Reference in New Issue
Block a user