Compare commits

...

2 Commits

Author SHA1 Message Date
Kristoffer Dalby ca3048e41e
release: enable mipsle and mips64le pkgs for Debian
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
2023-05-09 09:55:12 +02:00
Kristoffer Dalby ce3c5b5570
release: enable mips and mips64 pkgs for Debian
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
2023-05-09 09:18:21 +02:00
2 changed files with 13 additions and 11 deletions

View File

@ -354,6 +354,10 @@ func debArch(arch string) string {
// can ship more than 1 ARM deb, so for now match redo's behavior of
// shipping armv5 binaries in an armv7 trenchcoat.
return "armhf"
case "mipsle":
return "mipsel"
case "mips64le":
return "mips64el"
default:
return arch
}

View File

@ -82,17 +82,15 @@ var (
}
debs = map[string]bool{
"linux/386": true,
"linux/amd64": true,
"linux/arm": true,
"linux/arm64": true,
"linux/riscv64": true,
// TODO: maybe mipses, we accidentally started building them at some
// point even though they probably don't work right.
// "linux/mips": true,
// "linux/mipsle": true,
// "linux/mips64": true,
// "linux/mips64le": true,
"linux/386": true,
"linux/amd64": true,
"linux/arm": true,
"linux/arm64": true,
"linux/riscv64": true,
"linux/mips": true,
"linux/mips64": true,
"linux/mipsle": true,
"linux/mips64le": true,
}
rpms = map[string]bool{