2020-08-26 23:48:38 +00:00
|
|
|
group "default" {
|
|
|
|
targets = ["build"]
|
|
|
|
}
|
|
|
|
|
|
|
|
group "pre-checkin" {
|
2021-04-01 23:19:14 +00:00
|
|
|
targets = ["vendor-update", "format", "build"]
|
2020-08-26 23:48:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
group "validate" {
|
2022-03-21 12:43:41 +00:00
|
|
|
targets = ["lint", "build-validate", "vendor-validate"]
|
2020-08-26 23:48:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
target "build" {
|
2022-03-21 12:43:41 +00:00
|
|
|
dockerfile = "dev.Dockerfile"
|
2021-04-01 23:19:14 +00:00
|
|
|
target = "build-update"
|
2020-08-26 23:48:38 +00:00
|
|
|
output = ["."]
|
|
|
|
}
|
|
|
|
|
2021-04-01 23:19:14 +00:00
|
|
|
target "build-validate" {
|
2022-03-21 12:43:41 +00:00
|
|
|
dockerfile = "dev.Dockerfile"
|
2021-04-01 23:19:14 +00:00
|
|
|
target = "build-validate"
|
2021-11-16 20:53:30 +00:00
|
|
|
output = ["type=cacheonly"]
|
2020-08-26 23:48:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
target "format" {
|
2022-03-21 12:43:41 +00:00
|
|
|
dockerfile = "dev.Dockerfile"
|
2021-04-01 23:19:14 +00:00
|
|
|
target = "format-update"
|
2020-08-26 23:48:38 +00:00
|
|
|
output = ["."]
|
|
|
|
}
|
|
|
|
|
2022-03-21 12:43:41 +00:00
|
|
|
target "lint" {
|
|
|
|
dockerfile = "dev.Dockerfile"
|
|
|
|
target = "lint"
|
2021-11-16 20:53:30 +00:00
|
|
|
output = ["type=cacheonly"]
|
2021-04-01 23:19:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
target "vendor-update" {
|
2022-03-21 12:43:41 +00:00
|
|
|
dockerfile = "dev.Dockerfile"
|
2021-11-16 20:53:30 +00:00
|
|
|
target = "vendor-update"
|
2021-04-01 23:19:14 +00:00
|
|
|
output = ["."]
|
2020-08-26 23:48:38 +00:00
|
|
|
}
|
|
|
|
|
2021-04-01 23:19:14 +00:00
|
|
|
target "vendor-validate" {
|
2022-03-21 12:43:41 +00:00
|
|
|
dockerfile = "dev.Dockerfile"
|
2021-11-16 20:53:30 +00:00
|
|
|
target = "vendor-validate"
|
|
|
|
output = ["type=cacheonly"]
|
2020-08-26 23:48:38 +00:00
|
|
|
}
|
|
|
|
|
2021-04-01 23:19:14 +00:00
|
|
|
target "test" {
|
2022-03-21 12:43:41 +00:00
|
|
|
dockerfile = "dev.Dockerfile"
|
2021-04-01 23:19:14 +00:00
|
|
|
target = "test-coverage"
|
|
|
|
output = ["./coverage"]
|
2023-01-28 00:43:10 +00:00
|
|
|
secret = ["id=GITHUB_TOKEN,env=GITHUB_TOKEN"]
|
2021-04-01 23:19:14 +00:00
|
|
|
}
|