From 683da479c7a287ecccbcd88dd80b886d6c524aa5 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Wed, 22 Sep 2021 20:09:31 +0900 Subject: [PATCH] .github/worksflows: Bug fix: wasmbrowsertest doesn't support -shuffle yet --- .github/workflows/test.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e9bd58a94..7a62d9a99 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: |