From 6e2fb46625ea0abcd4f7b6a22a6b419dbc2623df Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 28 Aug 2022 12:52:57 +0900 Subject: [PATCH] .github/workflows: enable Wasm tests for Go 1.15 and 1.16 These were disabled at 0c1449de5ee590b2cb6f9a5863e9819dd70ba7f1 but not reverted appropriately. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c5e576412..d94c04b99 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -126,7 +126,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-') }} run: | env GOOS=js GOARCH=wasm go test -tags=example ${{ !startsWith(matrix.go, '1.15.') && !startsWith(matrix.go, '1.16.') && '-shuffle=on' || '' }} -v ./... env GOOS=js GOARCH=wasm EBITENGINE_OPENGL=webgl1 go test -tags=example ${{ !startsWith(matrix.go, '1.15.') && !startsWith(matrix.go, '1.16.') && '-shuffle=on' || '' }} -v ./...