From 22c2cdc2d488e08dba8beeabed76b40459d6a1b6 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Tue, 30 Aug 2022 03:54:28 +0900 Subject: [PATCH] Revert ".github/workflows: add ARM Windows test" This reverts commit 82e9b42c4f2e44b2a9d1f945eb27b9e83a68ab79. Reason: test failures: an old Go doesn't support windows/arm or windows/arm64 --- .github/workflows/test.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bee026e31..5712c44e9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -85,10 +85,8 @@ jobs: # See also https://go.googlesource.com/vscode-go/+/HEAD/docs/debugging.md#launch and the issue #2120. go build -tags=example "-gcflags=all=-N -l" -v ./... env GOOS=js GOARCH=wasm go build -tags=example -v ./... - env GOOS=windows GOARCH=386 go build -tags=example -v ./... env GOOS=windows GOARCH=amd64 go build -tags=example -v ./... - env GOOS=windows GOARCH=arm go build -tags=example -v ./... - env GOOS=windows GOARCH=arm64 go build -tags=example -v ./... + env GOOS=windows GOARCH=386 go build -tags=example -v ./... - name: go build (macOS) if: ${{ startsWith(matrix.os, 'macos-') && !startsWith(matrix.go, '1.15.') }}