mirror of
https://github.com/octoleo/syncthing.git
synced 2024-12-23 03:18:59 +00:00
build, jenkins: Build for mips (fixes #3959)
This commit is contained in:
parent
73cbd17e17
commit
d7adee05a8
2
build.go
2
build.go
@ -255,7 +255,7 @@ func main() {
|
|||||||
|
|
||||||
func checkArchitecture() {
|
func checkArchitecture() {
|
||||||
switch goarch {
|
switch goarch {
|
||||||
case "386", "amd64", "arm", "arm64", "ppc64", "ppc64le":
|
case "386", "amd64", "arm", "arm64", "ppc64", "ppc64le", "mips":
|
||||||
break
|
break
|
||||||
default:
|
default:
|
||||||
log.Printf("Unknown goarch %q; proceed with caution!", goarch)
|
log.Printf("Unknown goarch %q; proceed with caution!", goarch)
|
||||||
|
@ -26,7 +26,7 @@ testWithCoverage
|
|||||||
platforms=(
|
platforms=(
|
||||||
dragonfly-amd64
|
dragonfly-amd64
|
||||||
freebsd-amd64 freebsd-386
|
freebsd-amd64 freebsd-386
|
||||||
linux-amd64 linux-386 linux-arm linux-arm64 linux-ppc64 linux-ppc64le
|
linux-amd64 linux-386 linux-arm linux-arm64 linux-ppc64 linux-ppc64le linux-mips
|
||||||
netbsd-amd64 netbsd-386
|
netbsd-amd64 netbsd-386
|
||||||
openbsd-amd64 openbsd-386
|
openbsd-amd64 openbsd-386
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user