-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.sh
executable file
·34 lines (30 loc) · 879 Bytes
/
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
#!/bin/bash
Usage(){
echo "Usage:
./build mac|linux
Compile For Mac or Linux
"
exit 2
}
if [ $# -ne 1 ]; then
Usage
fi
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.io,direct
if [ "$1" = "mac" ]; then
echo "Compile For Mac ..."
go build -o hadoop_exporter cmd/hadoop-exporter/hadoop_exporter.go && \
go build -o hbase_exporter cmd/hbase-exporter/hbase_exporter.go
echo
echo "Compiled For Mac Done !"
elif [ "$1" = "linux" ]; then
echo "Compile For Linux ..."
GOOS=linux GOARCH=amd64 go build -o hadoop_exporter cmd/hadoop-exporter/hadoop_exporter.go && \
GOOS=linux GOARCH=amd64 go build -o hbase_exporter cmd/hbase-exporter/hbase_exporter.go
echo
echo "Compiled For Linux Done !"
elif [ "$1" = "rm" ]; then
rm -f hadoop_exporter hbase_exporter
else
Usage
fi