mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-15 16:07:11 +08:00
vendor: github.com/tonistiigi/fsutil 8d32dbdd27d3
full diff: 397af5306b...8d32dbdd27
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
26
vendor/github.com/tonistiigi/fsutil/docker-bake.hcl
generated
vendored
26
vendor/github.com/tonistiigi/fsutil/docker-bake.hcl
generated
vendored
@ -6,6 +6,25 @@ variable "DESTDIR" {
|
||||
default = "./bin"
|
||||
}
|
||||
|
||||
target "_platforms" {
|
||||
platforms = [
|
||||
"darwin/amd64",
|
||||
"darwin/arm64",
|
||||
"freebsd/amd64",
|
||||
"freebsd/arm64",
|
||||
"linux/386",
|
||||
"linux/amd64",
|
||||
"linux/arm",
|
||||
"linux/arm64",
|
||||
"linux/ppc64le",
|
||||
"linux/s390x",
|
||||
"openbsd/amd64",
|
||||
"openbsd/arm64",
|
||||
"windows/amd64",
|
||||
"windows/arm64"
|
||||
]
|
||||
}
|
||||
|
||||
group "default" {
|
||||
targets = ["build"]
|
||||
}
|
||||
@ -40,6 +59,10 @@ target "lint" {
|
||||
}
|
||||
}
|
||||
|
||||
target "lint-cross" {
|
||||
inherits = ["lint", "_platforms"]
|
||||
}
|
||||
|
||||
target "validate-generated-files" {
|
||||
dockerfile = "./hack/dockerfiles/generated-files.Dockerfile"
|
||||
output = ["type=cacheonly"]
|
||||
@ -86,6 +109,5 @@ target "shfmt" {
|
||||
}
|
||||
|
||||
target "cross" {
|
||||
inherits = ["build"]
|
||||
platforms = ["linux/amd64", "linux/386", "linux/arm64", "linux/arm", "linux/ppc64le", "linux/s390x", "darwin/amd64", "darwin/arm64", "windows/amd64", "windows/arm64", "freebsd/amd64", "freebsd/arm64"]
|
||||
inherits = ["build", "_platforms"]
|
||||
}
|
||||
|
Reference in New Issue
Block a user