1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-24 10:07:21 +02:00

Normalize aarch64 -> arm64 for docker backend (#4451) (#4457)

Co-authored-by: Patrick Schratz <patrick.schratz@gmail.com>
This commit is contained in:
6543 2024-11-25 19:48:23 +01:00 committed by GitHub
parent 2cbd9268f6
commit e1ec60a826
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -377,6 +377,8 @@ func normalizeArchType(s string) string {
switch s {
case "x86_64":
return "amd64"
case "aarch64":
return "arm64"
default:
return s
}