.github/workflows: bug fix: NintendoSDK is available only with GOOS=linux

This commit is contained in:
Hajime Hoshi 2022-08-18 12:23:36 +09:00
parent 3f4e3ef41f
commit f8395e234a

View File

@ -99,7 +99,7 @@ jobs:
rm flappy rm flappy
- name: go build (NintendoSDK) - name: go build (NintendoSDK)
if: ${{ !startsWith(matrix.os, 'windows-') }} if: ${{ startsWith(matrix.os, 'ubuntu-') }}
run: | run: |
go build -tags=example,nintendosdk -v ./... go build -tags=example,nintendosdk -v ./...
go build -tags=example,ebitencbackend -v ./... # For backward compatibility. Remove this in the future (#2190). go build -tags=example,ebitencbackend -v ./... # For backward compatibility. Remove this in the future (#2190).