-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sh
executable file
·95 lines (79 loc) · 2.36 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/usr/bin/env bash
# https://github.com/hashicorp/terraform/blob/main/scripts/build.sh
# This script builds the application from source for multiple platforms.
# Determine the arch/os combos we're building for
XC_ARCH=${XC_ARCH:-"386 amd64 arm arm64"}
XC_OS=${XC_OS:-linux darwin windows freebsd}
XC_EXCLUDE_OSARCH=""
# Delete the old dir
echo "==> Removing old directory..."
rm -f bin/*
rm -rf pkg/*
mkdir -p bin/
# If its dev mode, only build for ourself
if [[ -n "${BARBE_DEV}" ]]; then
XC_OS=$(go env GOOS)
XC_ARCH=$(go env GOARCH)
fi
if ! which gox > /dev/null; then
echo "==> Installing gox..."
go install github.com/mitchellh/gox@latest
fi
# Instruct gox to build statically linked binaries
export CGO_ENABLED=0
# Set module download mode to readonly to not implicitly update go.mod
export GOFLAGS="-mod=readonly"
# In release mode we don't want debug information in the binary
if [[ -n "${BARBE_RELEASE}" ]]; then
LD_FLAGS="-s -w"
fi
# Ensure all remote modules are downloaded and cached before build so that
# the concurrent builds launched by gox won't race to redundantly download them.
go mod download
# Build!
echo "==> Building..."
gox \
-os="${XC_OS}" \
-arch="${XC_ARCH}" \
-osarch="${XC_EXCLUDE_OSARCH}" \
-ldflags "${LD_FLAGS}" \
-output "pkg/{{.OS}}_{{.Arch}}/barbe" \
./cli
# Move all the compiled things to the $GOPATH/bin
#GOPATH=${GOPATH:-$(go env GOPATH)}
#case $(uname) in
# CYGWIN*)
# GOPATH="$(cygpath $GOPATH)"
# ;;
#esac
#OLDIFS=$IFS
#IFS=: MAIN_GOPATH=($GOPATH)
#IFS=$OLDIFS
# Create GOPATH/bin if it's doesn't exists
#if [ ! -d $MAIN_GOPATH/bin ]; then
# echo "==> Creating GOPATH/bin directory..."
# mkdir -p $MAIN_GOPATH/bin
#fi
# Copy our OS/Arch to the bin/ directory
DEV_PLATFORM="./pkg/$(go env GOOS)_$(go env GOARCH)"
if [[ -d "${DEV_PLATFORM}" ]]; then
for F in $(find ${DEV_PLATFORM} -mindepth 1 -maxdepth 1 -type f); do
cp ${F} bin/
# cp ${F} ${MAIN_GOPATH}/bin/
done
fi
if [ "${BARBE_DEV}x" = "x" ]; then
# Zip and copy to the dist dir
echo "==> Packaging..."
for PLATFORM in $(find ./pkg -mindepth 1 -maxdepth 1 -type d); do
OSARCH=$(basename ${PLATFORM})
echo "--> ${OSARCH}"
pushd $PLATFORM >/dev/null 2>&1
zip ../${OSARCH}.zip ./*
popd >/dev/null 2>&1
done
fi
# Done!
echo
echo "==> Results:"
ls -hl bin/