2021-12-07 22:07:21 +03:00
|
|
|
variable "GO_VERSION" {
|
2023-11-09 12:54:54 +03:00
|
|
|
default = "1.21.3"
|
2021-12-07 22:07:21 +03:00
|
|
|
}
|
2021-03-03 10:03:02 +03:00
|
|
|
variable "VERSION" {
|
2023-03-27 13:07:47 +03:00
|
|
|
default = ""
|
2021-03-03 10:03:02 +03:00
|
|
|
}
|
|
|
|
variable "USE_GLIBC" {
|
2023-03-27 13:07:47 +03:00
|
|
|
default = ""
|
2021-03-03 10:03:02 +03:00
|
|
|
}
|
|
|
|
variable "STRIP_TARGET" {
|
2023-03-27 13:07:47 +03:00
|
|
|
default = ""
|
2021-03-03 10:03:02 +03:00
|
|
|
}
|
2021-11-17 19:18:15 +03:00
|
|
|
variable "IMAGE_NAME" {
|
|
|
|
default = "docker-cli"
|
|
|
|
}
|
2021-03-03 10:03:02 +03:00
|
|
|
|
2021-10-11 17:54:09 +03:00
|
|
|
# Sets the name of the company that produced the windows binary.
|
2022-03-27 11:09:50 +03:00
|
|
|
variable "PACKAGER_NAME" {
|
2021-10-11 17:54:09 +03:00
|
|
|
default = ""
|
|
|
|
}
|
|
|
|
|
2021-12-07 22:07:21 +03:00
|
|
|
target "_common" {
|
|
|
|
args = {
|
|
|
|
GO_VERSION = GO_VERSION
|
|
|
|
BUILDKIT_CONTEXT_KEEP_GIT_DIR = 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-06 19:33:11 +03: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 10:03:02 +03:00
|
|
|
group "default" {
|
|
|
|
targets = ["binary"]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "binary" {
|
2021-12-07 22:07:21 +03:00
|
|
|
inherits = ["_common"]
|
2021-03-03 10:03:02 +03:00
|
|
|
target = "binary"
|
|
|
|
platforms = ["local"]
|
|
|
|
output = ["build"]
|
|
|
|
args = {
|
2023-07-10 13:57:31 +03:00
|
|
|
BASE_VARIANT = USE_GLIBC == "1" ? "bookworm" : "alpine"
|
2021-03-03 10:03:02 +03:00
|
|
|
VERSION = VERSION
|
2022-03-27 11:09:50 +03:00
|
|
|
PACKAGER_NAME = PACKAGER_NAME
|
2021-03-03 10:03:02 +03:00
|
|
|
GO_STRIP = STRIP_TARGET
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
target "dynbinary" {
|
|
|
|
inherits = ["binary"]
|
|
|
|
args = {
|
|
|
|
GO_LINKMODE = "dynamic"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-17 19:18:15 +03:00
|
|
|
target "plugins" {
|
2021-12-07 22:07:21 +03:00
|
|
|
inherits = ["_common"]
|
2021-11-17 19:18:15 +03:00
|
|
|
target = "plugins"
|
|
|
|
platforms = ["local"]
|
|
|
|
output = ["build"]
|
|
|
|
args = {
|
2023-07-10 13:57:31 +03:00
|
|
|
BASE_VARIANT = USE_GLIBC == "1" ? "bookworm" : "alpine"
|
2021-11-17 19:18:15 +03:00
|
|
|
VERSION = VERSION
|
|
|
|
GO_STRIP = STRIP_TARGET
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-03 10:03:02 +03:00
|
|
|
target "cross" {
|
2022-06-06 19:33:11 +03:00
|
|
|
inherits = ["binary", "_platforms"]
|
2021-03-03 10:03:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
target "dynbinary-cross" {
|
2022-06-06 19:33:11 +03:00
|
|
|
inherits = ["dynbinary", "_platforms"]
|
2021-03-03 10:03:02 +03:00
|
|
|
}
|
2021-08-05 09:44:16 +03:00
|
|
|
|
2021-11-17 19:18:15 +03:00
|
|
|
target "plugins-cross" {
|
2022-06-06 19:33:11 +03:00
|
|
|
inherits = ["plugins", "_platforms"]
|
2021-11-17 19:18:15 +03:00
|
|
|
}
|
|
|
|
|
2021-08-05 09:44:16 +03:00
|
|
|
target "lint" {
|
2021-12-07 22:07:21 +03:00
|
|
|
inherits = ["_common"]
|
2021-08-05 09:44:16 +03:00
|
|
|
dockerfile = "./dockerfiles/Dockerfile.lint"
|
|
|
|
target = "lint"
|
|
|
|
output = ["type=cacheonly"]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "shellcheck" {
|
2021-12-07 22:07:21 +03:00
|
|
|
inherits = ["_common"]
|
2021-08-05 09:44:16 +03:00
|
|
|
dockerfile = "./dockerfiles/Dockerfile.shellcheck"
|
|
|
|
target = "shellcheck"
|
|
|
|
output = ["type=cacheonly"]
|
|
|
|
}
|
2021-11-17 19:18:15 +03:00
|
|
|
|
2021-12-16 23:15:53 +03:00
|
|
|
target "validate-vendor" {
|
2021-12-07 22:46:43 +03:00
|
|
|
inherits = ["_common"]
|
2021-12-16 23:15:53 +03:00
|
|
|
dockerfile = "./dockerfiles/Dockerfile.vendor"
|
|
|
|
target = "validate"
|
|
|
|
output = ["type=cacheonly"]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "update-vendor" {
|
2021-12-07 22:46:43 +03:00
|
|
|
inherits = ["_common"]
|
2021-12-16 23:15:53 +03:00
|
|
|
dockerfile = "./dockerfiles/Dockerfile.vendor"
|
|
|
|
target = "update"
|
|
|
|
output = ["."]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "mod-outdated" {
|
2021-12-07 22:46:43 +03:00
|
|
|
inherits = ["_common"]
|
2021-12-16 23:15:53 +03:00
|
|
|
dockerfile = "./dockerfiles/Dockerfile.vendor"
|
|
|
|
target = "outdated"
|
2022-06-05 17:25:05 +03:00
|
|
|
no-cache-filter = ["outdated"]
|
2021-12-16 23:15:53 +03:00
|
|
|
output = ["type=cacheonly"]
|
|
|
|
}
|
|
|
|
|
2021-12-21 03:44:40 +03: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 16:50:16 +03:00
|
|
|
target "test" {
|
|
|
|
target = "test"
|
|
|
|
output = ["type=cacheonly"]
|
|
|
|
}
|
|
|
|
|
|
|
|
target "test-coverage" {
|
|
|
|
target = "test-coverage"
|
|
|
|
output = ["build/coverage"]
|
|
|
|
}
|
|
|
|
|
2021-11-17 19:18:15 +03:00
|
|
|
target "e2e-image" {
|
|
|
|
target = "e2e"
|
|
|
|
output = ["type=docker"]
|
|
|
|
tags = ["${IMAGE_NAME}"]
|
|
|
|
args = {
|
2023-07-10 13:57:31 +03:00
|
|
|
BASE_VARIANT = USE_GLIBC == "1" ? "bookworm" : "alpine"
|
2021-11-17 19:18:15 +03:00
|
|
|
VERSION = VERSION
|
|
|
|
}
|
|
|
|
}
|
2023-03-27 13:53:56 +03:00
|
|
|
|
|
|
|
target "e2e-gencerts" {
|
|
|
|
inherits = ["_common"]
|
|
|
|
dockerfile = "./e2e/testdata/Dockerfile.gencerts"
|
|
|
|
output = ["./e2e/testdata"]
|
|
|
|
}
|