forked from couchbase/goxdcr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
106 lines (99 loc) · 1.48 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
96
97
98
99
100
101
102
103
104
105
106
#!/bin/bash
# Copyright 2014-Present Couchbase, Inc.
#
# Use of this software is governed by the Business Source License included in
# the file licenses/BSL-Couchbase.txt. As of the Change Date specified in that
# file, in accordance with the Business Source License, use of this software
# will be governed by the Apache License, Version 2.0, included in the file
# licenses/APL2.txt.
build_xdcr(){
echo "Building xdcr..."
cd main
go build -o xdcr
cd ..
echo "Done"
echo "xdcr binary under bin/"
}
build_tests(){
echo "Building tests..."
cd tests
cd common
go clean
go install
cd ../adminport
go clean
go install
cd ../xmem
go clean
go install
cd ../factory
go clean
go install
cd ../latency_test
go clean
go install
cd ../router
go clean
go install
cd ../dcpnozzle
go clean
go install
cd ../pipeline
go clean
go install
cd ../remote_cluster
go clean
go install
cd ..
echo "Done"
}
clean_xdcr(){
echo "Clean xdcr..."
cd main
go clean
cd ..
rm -f bin/xdcr
}
clean_tests(){
echo "Clean tests..."
cd tests
cd common
go clean
cd ../adminport
go clean
cd ../xmem
go clean
cd ../factory
go clean
cd ../latency_test
go clean
cd ../router
go clean
cd ../dcpnozzle
go clean
cd ../pipeline
go clean
cd ../remote_cluster
go clean
cd ..
echo "Done"
}
if [ -z "$1" ]
then
build_xdcr
build_tests
elif [ $1 == "xdcr" ]
then
build_xdcr
elif [ $1 == "tests" ]
then
build_tests
elif [ $1 == "clean" ]
then
echo "Cleaning..."
clean_xdcr
clean_tests
echo "Done"
else
echo "Unknown build option"
fi