mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-10 13:37:08 +08:00
vendor: buildkit, docker/docker and docker/cli v27.0.1
diffs: - https://github.com/docker/cli/compare/v26.1.4..v27.0.1 - https://github.com/docker/docker/compare/v26.1.4..v27.0.1 - https://github.com/moby/buildkit/compare/v0.14.1...aaaf86e5470bffbb395f5c15ad4a1c152642ea30 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
68
vendor/github.com/tonistiigi/go-csvvalue/docker-bake.hcl
generated
vendored
Normal file
68
vendor/github.com/tonistiigi/go-csvvalue/docker-bake.hcl
generated
vendored
Normal file
@ -0,0 +1,68 @@
|
||||
variable "COVER_FILENAME" {
|
||||
default = null
|
||||
}
|
||||
|
||||
variable "BENCH_FILENAME" {
|
||||
default = null
|
||||
}
|
||||
|
||||
variable "GO_VERSION" {
|
||||
default = null
|
||||
}
|
||||
|
||||
target "default" {
|
||||
targets = ["build"]
|
||||
}
|
||||
|
||||
target "_all_platforms" {
|
||||
platforms = [
|
||||
"linux/amd64",
|
||||
"linux/arm64",
|
||||
"linux/arm/v7",
|
||||
"linux/arm/v6",
|
||||
"linux/386",
|
||||
"linux/ppc64le",
|
||||
"linux/s390x",
|
||||
"darwin/amd64",
|
||||
"darwin/arm64",
|
||||
"windows/amd64",
|
||||
]
|
||||
}
|
||||
|
||||
target "build" {
|
||||
output = ["type=cacheonly"]
|
||||
args = {
|
||||
GO_VERSION = GO_VERSION
|
||||
}
|
||||
}
|
||||
|
||||
target "build-all" {
|
||||
inherits = ["build", "_all_platforms"]
|
||||
}
|
||||
|
||||
target "test" {
|
||||
target = "test"
|
||||
args = {
|
||||
COVER_FILENAME = COVER_FILENAME
|
||||
GO_VERSION = GO_VERSION
|
||||
}
|
||||
output = [COVER_FILENAME!=null?".":"type=cacheonly"]
|
||||
}
|
||||
|
||||
target "bench" {
|
||||
target = "bench"
|
||||
args = {
|
||||
BENCH_FILENAME = BENCH_FILENAME
|
||||
GO_VERSION = GO_VERSION
|
||||
}
|
||||
output = [BENCH_FILENAME!=null?".":"type=cacheonly"]
|
||||
}
|
||||
|
||||
target "lint" {
|
||||
dockerfile = "hack/dockerfiles/lint.Dockerfile"
|
||||
output = ["type=cacheonly"]
|
||||
}
|
||||
|
||||
target "lint-all" {
|
||||
inherits = ["lint", "_all_platforms"]
|
||||
}
|
Reference in New Issue
Block a user