summaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorJakob Borg <jakob@nym.se>2015-01-09 10:21:30 +0100
committerJakob Borg <jakob@nym.se>2015-01-09 10:45:15 +0100
commit961a87b743b63c6042ad64404c8c308180cdef32 (patch)
treef468b12cacc04273d661394322dbc3b2b06f2734 /build.sh
parente03d59e381847c97581b1d4872b9ee3fd50a3a68 (diff)
Only build ARMv5 (fixes #1218)
With this change, the build system only builds one ARM variant - ARMv5. We call the build architecture simply "arm", as this is what runtime.GOARCH says.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/build.sh b/build.sh
index e9070bc3f..fd4a45093 100755
--- a/build.sh
+++ b/build.sh
@@ -2,7 +2,7 @@
set -euo pipefail
IFS=$'\n\t'
-DOCKERIMGV=1.4-4
+DOCKERIMGV=1.4-5
case "${1:-default}" in
default)
@@ -52,9 +52,7 @@ case "${1:-default}" in
all)
go run build.go -goos linux -goarch amd64 tar
go run build.go -goos linux -goarch 386 tar
- go run build.go -goos linux -goarch armv5 tar
- go run build.go -goos linux -goarch armv6 tar
- go run build.go -goos linux -goarch armv7 tar
+ go run build.go -goos linux -goarch arm tar
go run build.go -goos freebsd -goarch amd64 tar
go run build.go -goos freebsd -goarch 386 tar