TeamCity: fix linux/arm64 build (#3403)

This commit is contained in:
Alessandro Arzilli 2023-06-07 05:46:00 +02:00 committed by GitHub
parent 6d412c65da
commit ea13a24f38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -176,6 +176,12 @@ class TestBuild(val os: String, val arch: String, version: String, buildId: Abso
arch
}
}
val dockerPlatformArch = when (arch) {
"arm64" -> "arm64/v8"
else -> {
dockerArch
}
}
dockerCommand {
name = "Pull Ubuntu"
commandType = other {