-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
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
Add arm64 builds for Docker container #25
Conversation
Builds both amd64 and arm64 containers on release.
Here's the build running on my fork: https://github.com/arbourd/xk6-client-tracing/actions/runs/8469718477 I produced both {
"schemaVersion": 2,
"mediaType": "application/vnd.oci.image.index.v1+json",
"manifests": [
{
"mediaType": "application/vnd.oci.image.manifest.v1+json",
"size": 863,
"digest": "sha256:92397e2ab66fa0b00675a5e47d34a7c6a90348e1240fe7b7c1ed3d9eb6c5b711",
"platform": {
"architecture": "amd64",
"os": "linux"
}
},
{
"mediaType": "application/vnd.oci.image.manifest.v1+json",
"size": 863,
"digest": "sha256:ae07e61de43010ddd8b6b426cf69136c4bcc191e09046a6dcf8df2bcc5a4d40c",
"platform": {
"architecture": "arm64",
"os": "linux"
}
},
{
"mediaType": "application/vnd.oci.image.manifest.v1+json",
"size": 566,
"digest": "sha256:b55e8d3a6d08e26e83344fee38db6e7f64ce5eb45c04f30424abc8a0e288a517",
"platform": {
"architecture": "unknown",
"os": "unknown"
}
},
{
"mediaType": "application/vnd.oci.image.manifest.v1+json",
"size": 566,
"digest": "sha256:8d24765285c8cd9409a355507cb238cdb5d2115da1864ab81ff1881da2a09a5e",
"platform": {
"architecture": "unknown",
"os": "unknown"
}
}
]
} Pulling the image onto my M2 Mac I'm able to see that it correctly pulls the |
Thank you for the PR. Do we know what the two |
I believe that's a build attestation: https://docs.docker.com/build/attestations/ We could disable them by adding |
Nice, let's see what CI does on merge. Thanks for the contribution. |
Any chance we could get a release featuring this change? 🙏🏻 |
https://github.com/grafana/xk6-client-tracing/releases/tag/v0.0.4 Its the first release I've done on this project, so let's see how it goes. |
Builds both amd64 and arm64 containers on release.