add more architectures for linux build process

equivalent to 7d665fa1f4/helpers/build-release-binaries/main.go
This commit is contained in:
Andreas Wagner 2022-10-06 12:06:20 +03:00 committed by GitHub
parent 4d9a2b828e
commit 4e3ae6403b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ var DIR, _ = filepath.Abs("./dist")
var targets = map[string][]string{
"darwin": {"amd64", "arm64"},
"freebsd": {"386", "amd64", "arm"},
"linux": {"386", "amd64", "arm", "arm64"},
"linux": {"386", "amd64", "arm", "arm64", "ppc64le", "mips", "mipsle", "mips64", "mips64le"},
"netbsd": {"386", "amd64"},
"openbsd": {"386", "amd64"},
}