You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tests in test can only be built on x86_64 as test/fcos.go uses a getFCOSDownload method which is only defined in test/fcos_amd64.go
This means go test ./test will only be buildable on an x86_64 machine.
This is problematic as make test in .github/workflows/go.yml is run on a macos node which can be arm64 or amd64, and thus the action will fail depending on which node is picked.
The text was updated successfully, but these errors were encountered:
The tests in
test
can only be built on x86_64 astest/fcos.go
uses agetFCOSDownload
method which is only defined intest/fcos_amd64.go
This means
go test ./test
will only be buildable on an x86_64 machine.This is problematic as
make test
in.github/workflows/go.yml
is run on a macos node which can be arm64 or amd64, and thus the action will fail depending on which node is picked.The text was updated successfully, but these errors were encountered: