We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GOARM
Prior to aarch64 to build for arm variants you needed to set GOARCH=arm GOARM=v6 or whatnot.
GOARCH=arm GOARM=v6
I don't believe we currently set this, although I believe it appears in the platform info in the manifest list.
cc @jonjohnsonjr
I noticed this building a ko image on golang, which has many many variants.
ko
golang
The text was updated successfully, but these errors were encountered:
From https://golang.org/cmd/go/:
GOARM For GOARCH=arm, the ARM architecture for which to compile. Valid values are 5, 6, 7.
$ crane manifest golang | jq .manifests[].platform.variant 2020/11/04 10:24:45 No matching credentials were found, falling back on anonymous null "v5" "v7" "v8" null null null null null null
Hate to see that v8. I guess we are going to hardcode a bunch of arm specific things.
v8
Open issue that we can TODO: golang/go#29373
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Prior to aarch64 to build for arm variants you needed to set
GOARCH=arm GOARM=v6
or whatnot.I don't believe we currently set this, although I believe it appears in the platform info in the manifest list.
cc @jonjohnsonjr
I noticed this building a
ko
image ongolang
, which has many many variants.The text was updated successfully, but these errors were encountered: