mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-15 16:07:11 +08:00
vendor: update buildkit to opentelemetry support
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
13
vendor/github.com/tonistiigi/fsutil/docker-bake.hcl
generated
vendored
13
vendor/github.com/tonistiigi/fsutil/docker-bake.hcl
generated
vendored
@ -1,5 +1,5 @@
|
||||
variable "GO_VERSION" {
|
||||
default = "1.13"
|
||||
default = "1.16"
|
||||
}
|
||||
|
||||
group "default" {
|
||||
@ -28,11 +28,20 @@ target "test-noroot" {
|
||||
|
||||
target "lint" {
|
||||
dockerfile = "./hack/dockerfiles/lint.Dockerfile"
|
||||
args = {
|
||||
GO_VERSION = "${GO_VERSION}"
|
||||
}
|
||||
}
|
||||
|
||||
target "validate-gomod" {
|
||||
dockerfile = "./hack/dockerfiles/gomod.Dockerfile"
|
||||
target = "validate"
|
||||
args = {
|
||||
# go mod may produce different results between go versions,
|
||||
# if this becomes a problem, this should be switched to use
|
||||
# a fixed go version.
|
||||
GO_VERSION = "${GO_VERSION}"
|
||||
}
|
||||
}
|
||||
|
||||
target "gomod" {
|
||||
@ -54,5 +63,5 @@ target "shfmt" {
|
||||
|
||||
target "cross" {
|
||||
inherits = ["build"]
|
||||
platforms = ["linux/amd64", "linux/arm64", "linux/arm", "linux/ppc64le", "linux/s390x"]
|
||||
platforms = ["linux/amd64", "linux/386", "linux/arm64", "linux/arm", "linux/ppc64le", "linux/s390x"]
|
||||
}
|
||||
|
Reference in New Issue
Block a user