File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -42,12 +42,20 @@ if [ -w ${go_root_dir}/pkg ]; then
42
42
fi
43
43
44
44
for cmd in sentinel proxy; do
45
+ echo " Building stolon-${cmd} ..."
45
46
CGO_ENABLED=0 go build -installsuffix cgo -ldflags " $LD_FLAGS " -o ${BINDIR} /stolon-${cmd} ${REPO_PATH} /cmd/${cmd}
47
+ echo " Done building stolon-${cmd} "
46
48
done
49
+
50
+ echo " Building stolonctl ..."
47
51
CGO_ENABLED=0 go build -installsuffix cgo -ldflags " $LD_FLAGS " -o ${BINDIR} /stolonctl ${REPO_PATH} /cmd/stolonctl
52
+ echo " Done building stolonctl"
48
53
49
- go build -ldflags " $LD_FLAGS " -o ${BINDIR} /stolon-keeper ${REPO_PATH} /cmd/keeper
54
+ echo " Building stolon-keeper ..."
55
+ go build -ldflags " $LD_FLAGS " -o ${BINDIR} /stolon-keeper ${REPO_PATH} /cmd/keeper
56
+ echo " Done building stolon-keeper"
50
57
58
+ echo " Copying binaries for docker images ..."
51
59
# Copy binaries to Dockerfile image directories
52
60
declare -a DOCKERFILE_PATHS
53
61
DOCKERFILE_PATHS=(${BASEDIR} /examples/kubernetes/image/docker)
59
67
cp ${BINDIR} /${cmd} $path /bin/
60
68
done
61
69
done
70
+ echo " Done!"
You can’t perform that action at this time.
0 commit comments