mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-10 08:32:24 +00:00
Normalize aarch64 -> arm64 for docker backend (#4451)
This commit is contained in:
parent
ceee2a07ab
commit
5d750322bc
1 changed files with 2 additions and 0 deletions
|
@ -358,6 +358,8 @@ func normalizeArchType(s string) string {
|
||||||
switch s {
|
switch s {
|
||||||
case "x86_64":
|
case "x86_64":
|
||||||
return "amd64"
|
return "amd64"
|
||||||
|
case "aarch64":
|
||||||
|
return "arm64"
|
||||||
default:
|
default:
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue