2021-12-07 14:07:21 -05:00
|
|
|
variable "GO_VERSION" {
|
2024-08-07 05:48:53 -04:00
|
|
|
default = "1.21.13"
|
2021-12-07 14:07:21 -05:00
|
|
|
}
|
2021-03-03 02:03:02 -05:00
|
|
|
variable "VERSION" {
|
2023-03-27 06:07:47 -04:00
|
|
|
default = ""
|
2021-03-03 02:03:02 -05:00
|
|
|
}
|
|
|
|
variable "USE_GLIBC" {
|
2023-03-27 06:07:47 -04:00
|
|
|
default = ""
|
2021-03-03 02:03:02 -05:00
|
|
|
}
|
|
|
|
variable "STRIP_TARGET" {
|
2023-03-27 06:07:47 -04:00
|
|
|
default = ""
|
2021-03-03 02:03:02 -05:00
|
|
|
}
|
2021-11-17 11:18:15 -05:00
|
|
|
variable "IMAGE_NAME" {
|
|
|
|
default = "docker-cli"
|
|
|
|
}
|
2021-03-03 02:03:02 -05:00
|
|
|
|
2021-10-11 10:54:09 -04:00
|
|
|
# Sets the name of the company that produced the windows binary.
|
2022-03-27 04:09:50 -04:00
|
|
|
variable "PACKAGER_NAME" {
|
2021-10-11 10:54:09 -04:00
|
|
|
default = ""
|
|
|
|
}
|
|
|
|
|
2021-12-07 14:07:21 -05:00
|
|
|
target "_common" {
|
|
|
|
args = {
|
|
|
|
GO_VERSION = GO_VERSION
|
|
|
|
BUILDKIT_CONTEXT_KEEP_GIT_DIR = 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-06 12:33:11 -04:00
|
|
|
target "_platforms" {
|
|
|
|
platforms = [
|
|
|
|
"darwin/amd64",
|
|
|
|
"darwin/arm64",
|
|
|
|
"linux/amd64",
|
|
|
|
"linux/arm/v6",
|
|
|
|
"linux/arm/v7",
|
|
|
|
"linux/arm64",
|
|
|
|
"linux/ppc64le",
|
|
|
|
"linux/riscv64",
|
|
|
|
"linux/s390x",
|
|
|
|
"windows/amd64",
|
|
|
|
"windows/arm64"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2021-03-03 02:03:02 -05:00
|
|
|
group "default" {
|
|
|
|
targets = ["binary"]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "binary" {
|
2021-12-07 14:07:21 -05:00
|
|
|
inherits = ["_common"]
|
2021-03-03 02:03:02 -05:00
|
|
|
target = "binary"
|
|
|
|
platforms = ["local"]
|
|
|
|
output = ["build"]
|
|
|
|
args = {
|
2023-07-10 07:01:07 -04:00
|
|
|
BASE_VARIANT = USE_GLIBC == "1" ? "debian" : "alpine"
|
2021-03-03 02:03:02 -05:00
|
|
|
VERSION = VERSION
|
2022-03-27 04:09:50 -04:00
|
|
|
PACKAGER_NAME = PACKAGER_NAME
|
2021-03-03 02:03:02 -05:00
|
|
|
GO_STRIP = STRIP_TARGET
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
target "dynbinary" {
|
|
|
|
inherits = ["binary"]
|
|
|
|
args = {
|
|
|
|
GO_LINKMODE = "dynamic"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-17 11:18:15 -05:00
|
|
|
target "plugins" {
|
2021-12-07 14:07:21 -05:00
|
|
|
inherits = ["_common"]
|
2021-11-17 11:18:15 -05:00
|
|
|
target = "plugins"
|
|
|
|
platforms = ["local"]
|
|
|
|
output = ["build"]
|
|
|
|
args = {
|
2023-07-10 07:01:07 -04:00
|
|
|
BASE_VARIANT = USE_GLIBC == "1" ? "debian" : "alpine"
|
2021-11-17 11:18:15 -05:00
|
|
|
VERSION = VERSION
|
|
|
|
GO_STRIP = STRIP_TARGET
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-03 02:03:02 -05:00
|
|
|
target "cross" {
|
2022-06-06 12:33:11 -04:00
|
|
|
inherits = ["binary", "_platforms"]
|
2021-03-03 02:03:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
target "dynbinary-cross" {
|
2022-06-06 12:33:11 -04:00
|
|
|
inherits = ["dynbinary", "_platforms"]
|
2021-03-03 02:03:02 -05:00
|
|
|
}
|
2021-08-05 02:44:16 -04:00
|
|
|
|
2021-11-17 11:18:15 -05:00
|
|
|
target "plugins-cross" {
|
2022-06-06 12:33:11 -04:00
|
|
|
inherits = ["plugins", "_platforms"]
|
2021-11-17 11:18:15 -05:00
|
|
|
}
|
|
|
|
|
2021-08-05 02:44:16 -04:00
|
|
|
target "lint" {
|
2021-12-07 14:07:21 -05:00
|
|
|
inherits = ["_common"]
|
2021-08-05 02:44:16 -04:00
|
|
|
dockerfile = "./dockerfiles/Dockerfile.lint"
|
|
|
|
target = "lint"
|
|
|
|
output = ["type=cacheonly"]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "shellcheck" {
|
2021-12-07 14:07:21 -05:00
|
|
|
inherits = ["_common"]
|
2021-08-05 02:44:16 -04:00
|
|
|
dockerfile = "./dockerfiles/Dockerfile.shellcheck"
|
|
|
|
target = "shellcheck"
|
|
|
|
output = ["type=cacheonly"]
|
|
|
|
}
|
2021-11-17 11:18:15 -05:00
|
|
|
|
2021-12-16 15:15:53 -05:00
|
|
|
target "validate-vendor" {
|
2021-12-07 14:46:43 -05:00
|
|
|
inherits = ["_common"]
|
2021-12-16 15:15:53 -05:00
|
|
|
dockerfile = "./dockerfiles/Dockerfile.vendor"
|
|
|
|
target = "validate"
|
|
|
|
output = ["type=cacheonly"]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "update-vendor" {
|
2021-12-07 14:46:43 -05:00
|
|
|
inherits = ["_common"]
|
2021-12-16 15:15:53 -05:00
|
|
|
dockerfile = "./dockerfiles/Dockerfile.vendor"
|
|
|
|
target = "update"
|
|
|
|
output = ["."]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "mod-outdated" {
|
2021-12-07 14:46:43 -05:00
|
|
|
inherits = ["_common"]
|
2021-12-16 15:15:53 -05:00
|
|
|
dockerfile = "./dockerfiles/Dockerfile.vendor"
|
|
|
|
target = "outdated"
|
2022-06-05 10:25:05 -04:00
|
|
|
no-cache-filter = ["outdated"]
|
2021-12-16 15:15:53 -05:00
|
|
|
output = ["type=cacheonly"]
|
|
|
|
}
|
|
|
|
|
2021-12-20 19:44:40 -05:00
|
|
|
target "validate-authors" {
|
|
|
|
inherits = ["_common"]
|
|
|
|
dockerfile = "./dockerfiles/Dockerfile.authors"
|
|
|
|
target = "validate"
|
|
|
|
output = ["type=cacheonly"]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "update-authors" {
|
|
|
|
inherits = ["_common"]
|
|
|
|
dockerfile = "./dockerfiles/Dockerfile.authors"
|
|
|
|
target = "update"
|
|
|
|
output = ["."]
|
|
|
|
}
|
|
|
|
|
2021-12-07 08:50:16 -05:00
|
|
|
target "test" {
|
|
|
|
target = "test"
|
|
|
|
output = ["type=cacheonly"]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "test-coverage" {
|
|
|
|
target = "test-coverage"
|
|
|
|
output = ["build/coverage"]
|
|
|
|
}
|
|
|
|
|
2021-11-17 11:18:15 -05:00
|
|
|
target "e2e-image" {
|
|
|
|
target = "e2e"
|
|
|
|
output = ["type=docker"]
|
|
|
|
tags = ["${IMAGE_NAME}"]
|
|
|
|
args = {
|
2023-07-10 07:01:07 -04:00
|
|
|
BASE_VARIANT = USE_GLIBC == "1" ? "debian" : "alpine"
|
2021-11-17 11:18:15 -05:00
|
|
|
VERSION = VERSION
|
|
|
|
}
|
|
|
|
}
|
2023-03-27 06:53:56 -04:00
|
|
|
|
|
|
|
target "e2e-gencerts" {
|
|
|
|
inherits = ["_common"]
|
|
|
|
dockerfile = "./e2e/testdata/Dockerfile.gencerts"
|
|
|
|
output = ["./e2e/testdata"]
|
|
|
|
}
|
2024-01-03 04:07:34 -05:00
|
|
|
|
|
|
|
target "docker-metadata-action" {
|
|
|
|
tags = ["cli-bin:local"]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "bin-image" {
|
|
|
|
inherits = ["binary", "docker-metadata-action"]
|
|
|
|
target = "bin-image"
|
|
|
|
output = ["type=docker"]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "bin-image-cross" {
|
|
|
|
inherits = ["bin-image"]
|
|
|
|
output = ["type=image"]
|
|
|
|
platforms = [
|
2024-04-08 08:42:19 -04:00
|
|
|
"darwin/amd64",
|
|
|
|
"darwin/arm64",
|
2024-01-03 04:07:34 -05:00
|
|
|
"linux/amd64",
|
|
|
|
"linux/arm/v6",
|
|
|
|
"linux/arm/v7",
|
|
|
|
"linux/arm64",
|
|
|
|
"linux/ppc64le",
|
|
|
|
"linux/s390x",
|
2024-03-06 10:45:55 -05:00
|
|
|
"windows/amd64",
|
|
|
|
"windows/arm64"
|
2024-01-03 04:07:34 -05:00
|
|
|
]
|
|
|
|
}
|