mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-22 15:02:23 +00:00
8d84facff5
Change-Type: patch Signed-off-by: Pablo Carranza Velez <pablo@resin.io>
36 lines
474 B
Bash
36 lines
474 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
|
|
./test_formatting.sh
|
|
go test -v ./gosuper
|
|
|
|
case "$ARCH" in
|
|
'amd64')
|
|
export GOARCH=amd64
|
|
;;
|
|
'i386')
|
|
export GOARCH=386
|
|
;;
|
|
'rpi')
|
|
export GOARCH=arm
|
|
export GOARM=6
|
|
;;
|
|
'armv7hf')
|
|
export GOARCH=arm
|
|
export GOARM=7
|
|
;;
|
|
'armel')
|
|
export GOARCH=arm
|
|
export GOARM=5
|
|
;;
|
|
'aarch64')
|
|
export GOARCH=arm64
|
|
;;
|
|
esac
|
|
|
|
go install -a -v ./gosuper \
|
|
&& cd /go/bin \
|
|
&& find -type f -name gosuper -exec mv {} /go/bin/gosuper \; \
|
|
&& upx --best /go/bin/gosuper
|