mirror of
https://github.com/gogrlx/nats-server.git
synced 2026-04-14 02:07:59 -07:00
The cross compile script compiled an ARM executable, but the ARM default version varies based on the host, etc.. Made a change to the cross compile script to explicitly compile ARMv5 and ARMv7.
33 lines
1.1 KiB
Bash
Executable File
33 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
go get github.com/mitchellh/gox
|
|
go get github.com/tcnksm/ghr
|
|
|
|
export APPNAME="gnatsd"
|
|
export OSARCH="linux/386 linux/amd64 darwin/amd64 windows/386 windows/amd64"
|
|
export DIRS="linux-386 linux-amd64 linux-arm5 linux-arm7 darwin-amd64 windows-386 windows-amd64"
|
|
export OUTDIR="pkg"
|
|
|
|
# If we have an arg, assume its a version tag and rename as appropriate.
|
|
if [[ -n $1 ]]; then
|
|
export APPNAME=$APPNAME-$1
|
|
fi
|
|
|
|
# Build all from OSARCH list
|
|
env CGO_ENABLED=0 gox -osarch="$OSARCH" -ldflags="-s -w" -output "$OUTDIR/$APPNAME-{{.OS}}-{{.Arch}}/gnatsd"
|
|
|
|
# Be explicit about the ARM builds
|
|
# ARMv5
|
|
env CGO_ENABLED=0 GOARM=5 gox -osarch="linux/arm" -ldflags="-s -w" -output "$OUTDIR/$APPNAME-linux-arm5/gnatsd"
|
|
# ARMv7
|
|
env CGO_ENABLED=0 GOARM=7 gox -osarch="linux/arm" -ldflags="-s -w" -output "$OUTDIR/$APPNAME-linux-arm7/gnatsd"
|
|
|
|
# Create the zip files
|
|
for dir in $DIRS; do \
|
|
(cp README.md $OUTDIR/$APPNAME-$dir/README.md) ;\
|
|
(cp LICENSE $OUTDIR/$APPNAME-$dir/LICENSE) ;\
|
|
(cd $OUTDIR && zip -q $APPNAME-$dir.zip -r $APPNAME-$dir) ;\
|
|
echo "make $OUTDIR/$APPNAME-$dir.zip" ;\
|
|
done
|