-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathinstall_ci.sh
executable file
·76 lines (64 loc) · 2.63 KB
/
install_ci.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
#!/bin/bash
#------------------------------------------------------------------------------
# install_ci.sh
# The purpose of this script is install the required tools for building and
# testing DCE
#------------------------------------------------------------------------------
set -euxo pipefail
# safeGoGet will get the go tool, checking to see if it exists first and doing
# a little additional messaging
function safeGoInstall() {
binname=$(basename "$1")
echo "Checking for ${binname} on the path..."
if [ ! -x "$(command -v "${binname}")" ]; then
echo -n "Getting ${binname} from $1..."
go install "$1"
echo "Done."
fi
}
if [ ! -x "$(command -v go)" ]; then
echo "Cannot find \'go\'. Check your $PATH to make sure it includes \'go\'." >&2
exit 1
fi
gopath=$(command -v go)
export GOBIN=$(dirname "${gopath}")
# Must be enabled to install certain tools
# eg. https://github.com/golangci/golangci-lint/issues/1040#issuecomment-618269286
export GO111MODULE=on
# Get the proper version of tflint first and install it into the same path
# as the other go tools.
if [ -x "$(command -v wget)" ]; then
if [ ! -x "$(command -v tflint)" ]; then
if [[ $(uname -s) == "Darwin" ]]; then
wget -q https://github.com/wata727/tflint/releases/download/v0.15.4/tflint_darwin_amd64.zip -O /tmp/tflint.zip
else
wget -q https://github.com/wata727/tflint/releases/download/v0.15.4/tflint_linux_amd64.zip -O /tmp/tflint.zip
fi
(cd /tmp && unzip tflint.zip)
chmod +x /tmp/tflint
mv /tmp/tflint "$GOBIN"
fi
else
echo "Cannot find wget, which is required for installing tools."
exit 1
fi
#------------------------------------------------------------------------------
# Dependencies go here.
#------------------------------------------------------------------------------
# Download required and remove any unused dependencies
go mod tidy -v
# go-junit-report is used by the test scripts to generate report output readable
# by CI tools that can read JUnit reports
safeGoInstall github.com/jstemmer/go-junit-report@latest
# gcov is used to generate coverage information in a report that can be read
# by CI tools
safeGoInstall github.com/axw/gocov/gocov@latest
safeGoInstall github.com/AlekSi/gocov-xml@latest
# safeGoInstall github.com/matm/gocov-html@latest
safeGoInstall github.com/matm/gocov-html/cmd/gocov-html@latest
# golangci-lint is a lint aggregator used in the lint.sh script to lint the
# go and terraform code.
safeGoInstall github.com/golangci/golangci-lint/cmd/golangci-lint@latest
# gosec is used for checking the code for security problems
safeGoInstall github.com/securego/gosec/cmd/gosec@latest
echo "Setup complete."