Fix Docker multi-arch debug builds

This commit is contained in:
Quentin Gliech
2022-01-19 19:08:26 +01:00
parent b0b64a60c6
commit 7d669eb868

View File

@@ -31,6 +31,12 @@ group "gha" { targets = ["gha-regular", "gha-debug", "gha-test"] }
target "gha-base" {
inherits = ["release"]
// TODO: there seems to be a bug with inheriting twice the platforms, here is a workaround
platforms = [
"linux/amd64",
"linux/arm64",
"linux/arm",
]
}
// This is filled by GitHub Actions