1
0
Files

67 lines
1.1 KiB
HCL
Raw Permalink Normal View History

2025-01-08 12:39:23 +01:00
target "_common" {
args = {
BUILDKIT_CONTEXT_KEEP_GIT_DIR = 1
}
}
2021-03-29 13:18:19 +02:00
group "default" {
targets = ["build"]
2020-12-19 03:53:36 +01:00
}
2021-03-29 13:18:19 +02:00
group "pre-checkin" {
2024-05-07 10:45:56 +02:00
targets = ["vendor", "format", "build"]
2020-10-25 02:25:23 +01:00
}
2021-03-29 13:18:19 +02:00
group "validate" {
2022-03-22 21:09:00 +01:00
targets = ["lint", "build-validate", "vendor-validate"]
2020-10-25 02:25:23 +01:00
}
target "build" {
2025-01-08 12:39:23 +01:00
inherits = ["_common"]
2022-03-22 21:09:00 +01:00
dockerfile = "dev.Dockerfile"
2021-03-29 13:18:19 +02:00
target = "build-update"
2020-10-25 02:25:23 +01:00
output = ["."]
}
2021-03-29 13:18:19 +02:00
target "build-validate" {
2025-01-08 12:39:23 +01:00
inherits = ["_common"]
2022-03-22 21:09:00 +01:00
dockerfile = "dev.Dockerfile"
2021-03-29 13:18:19 +02:00
target = "build-validate"
2021-11-16 21:51:18 +01:00
output = ["type=cacheonly"]
2020-10-25 02:25:23 +01:00
}
target "format" {
2025-01-08 12:39:23 +01:00
inherits = ["_common"]
2022-03-22 21:09:00 +01:00
dockerfile = "dev.Dockerfile"
2021-03-29 13:18:19 +02:00
target = "format-update"
2020-10-25 02:25:23 +01:00
output = ["."]
}
2022-03-22 21:09:00 +01:00
target "lint" {
2025-01-08 12:39:23 +01:00
inherits = ["_common"]
2022-03-22 21:09:00 +01:00
dockerfile = "dev.Dockerfile"
target = "lint"
2021-11-16 21:51:18 +01:00
output = ["type=cacheonly"]
2021-03-29 13:18:19 +02:00
}
2024-05-07 10:45:56 +02:00
target "vendor" {
2025-01-08 12:39:23 +01:00
inherits = ["_common"]
2022-03-22 21:09:00 +01:00
dockerfile = "dev.Dockerfile"
2021-11-16 21:51:18 +01:00
target = "vendor-update"
2021-03-29 13:18:19 +02:00
output = ["."]
2020-10-25 02:25:23 +01:00
}
2021-03-29 13:18:19 +02:00
target "vendor-validate" {
2025-01-08 12:39:23 +01:00
inherits = ["_common"]
2022-03-22 21:09:00 +01:00
dockerfile = "dev.Dockerfile"
2021-11-16 21:51:18 +01:00
target = "vendor-validate"
output = ["type=cacheonly"]
2020-10-25 02:25:23 +01:00
}
2021-03-29 13:18:19 +02:00
target "test" {
2025-01-08 12:39:23 +01:00
inherits = ["_common"]
2022-03-22 21:09:00 +01:00
dockerfile = "dev.Dockerfile"
2021-03-29 13:18:19 +02:00
target = "test-coverage"
output = ["./coverage"]
2020-10-25 02:25:23 +01:00
}