2022-08-17 13:16:53 +02:00
|
|
|
#!/bin/sh
|
|
|
|
set -euxo pipefail
|
|
|
|
apk update
|
|
|
|
apk upgrade
|
|
|
|
apk add --no-progress gcc git linux-headers musl-dev
|
2022-08-29 15:45:41 +02:00
|
|
|
# We need to force git to look into this repository owned by the
|
|
|
|
# user outside docker rather than by the user running docker
|
|
|
|
git config --global --add safe.directory $(pwd)
|
|
|
|
# Some of the following exports are redundant but are however
|
2022-08-17 13:16:53 +02:00
|
|
|
# useful because they provide explicit logging
|
|
|
|
export CGO_ENABLED=1
|
|
|
|
export GOARM=$GOARM
|
|
|
|
export GOOS=$GOOS
|
|
|
|
export GOARCH=$GOARCH
|
2022-08-30 11:36:59 +02:00
|
|
|
for PACKAGE in $@; do
|
|
|
|
PRODUCT=$(basename $PACKAGE)
|
|
|
|
go build -o ./CLI/$PRODUCT-$GOOS-$OONIARCH \
|
|
|
|
-ldflags='-s -w -extldflags "-static"' \
|
|
|
|
$GOLANG_EXTRA_FLAGS $PACKAGE
|
|
|
|
done
|