forked from kubernetes-sigs/kwok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverify-all.sh
executable file
·122 lines (99 loc) · 3.75 KB
/
verify-all.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/usr/bin/env bash
# Copyright 2022 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -o errexit
set -o nounset
set -o pipefail
DIR="$(dirname "${BASH_SOURCE[0]}")"
ROOT_DIR="$(realpath "${DIR}/..")"
failed=()
if [[ "${VERIFY_BOILERPLATE:-true}" == "true" ]]; then
echo "[*] Verifying boilerplate..."
"${ROOT_DIR}"/hack/verify-boilerplate.sh || failed+=(boilerplate)
fi
if [[ "${VERIFY_ENDS_NEWLINE:-true}" == "true" ]]; then
echo "[*] Verifying ends newline..."
"${ROOT_DIR}"/hack/verify-ends-newline.sh || failed+=(ends-newline)
fi
if [[ "${VERIFY_GO_MOD:-true}" == "true" ]]; then
echo "[*] Verifying go mod..."
"${ROOT_DIR}"/hack/verify-go-mod.sh || failed+=(go-mod)
fi
if [[ "${VERIFY_GO_FORMAT:-true}" == "true" ]]; then
echo "[*] Verifying go format..."
"${ROOT_DIR}"/hack/verify-go-format.sh || failed+=(go-format)
fi
# TODO: Switch on after a while
# https://github.com/golangci/golangci-lint/issues/4909
if [[ "${VERIFY_GO_LINT:-false}" == "true" ]]; then
echo "[*] Verifying go lint..."
"${ROOT_DIR}"/hack/verify-go-lint.sh || failed+=(go-lint)
fi
if [[ "${VERIFY_CODEGEN:-true}" == "true" ]]; then
echo "[*] Verifying codegen..."
"${ROOT_DIR}"/hack/verify-codegen.sh || failed+=(codegen)
fi
if [[ "${VERIFY_CONTROLLERGEN:-true}" == "true" ]]; then
echo "[*] Verifying controllergen..."
"${ROOT_DIR}"/hack/verify-controllergen.sh || failed+=(controllergen)
fi
if [[ "${VERIFY_CMD_DOCS:-true}" == "true" ]]; then
echo "[*] Verifying cmd docs..."
"${ROOT_DIR}"/hack/verify-cmd-docs.sh || failed+=(cmd-docs)
fi
if [[ "${VERIFY_API_DOCS:-true}" == "true" ]]; then
echo "[*] Verifying api docs..."
"${ROOT_DIR}"/hack/verify-api-docs.sh || failed+=(api-docs)
fi
if [[ "${VERIFY_YAMLLINT:-true}" == "true" ]]; then
echo "[*] Verifying YAML lint..."
"${ROOT_DIR}"/hack/verify-yamllint.sh || failed+=(yamllint)
fi
if [[ "${VERIFY_SHELLCHECK:-true}" == "true" ]]; then
echo "[*] Verifying shell check..."
"${ROOT_DIR}"/hack/verify-shellcheck.sh || failed+=(shellcheck)
fi
if [[ "${VERIFY_SHELL_FORMAT:-true}" == "true" ]]; then
echo "[*] Verifying shell format..."
"${ROOT_DIR}"/hack/verify-shell-format.sh || failed+=(shell-format)
fi
if [[ "${VERIFY_YAML_FORMAT:-true}" == "true" ]]; then
echo "[*] Verifying yaml format..."
"${ROOT_DIR}"/hack/verify-yaml-format.sh || failed+=(yaml-format)
fi
if [[ "${VERIFY_SPELLING:-true}" == "true" ]]; then
echo "[*] Verifying spelling..."
"${ROOT_DIR}"/hack/verify-spelling.sh || failed+=(spelling)
fi
if [[ "${VERIFY_STAGES:-true}" == "true" ]]; then
echo "[*] Verifying stages..."
"${ROOT_DIR}"/hack/verify-stages.sh || failed+=(stages)
fi
if [[ "${VERIFY_HELM_CHARTS:-true}" == "true" ]]; then
echo "[*] Verifying helm charts..."
"${ROOT_DIR}"/hack/verify-helm-charts.sh || failed+=(helm-charts)
fi
if [[ "${VERIFY_DEPENDENCIES_VERSION:-true}" == "true" ]]; then
echo "[*] Verifying dependencies version..."
"${ROOT_DIR}"/hack/verify-dependencies-version.sh || failed+=(dependencies-version)
fi
if [[ "${VERIFY_DRY_RUN_TESTDATA:-true}" == "true" ]]; then
echo "[*] Verifying testdata..."
"${ROOT_DIR}"/hack/verify-testdata.sh || failed+=(testdata)
fi
# exit based on verify scripts
if [[ "${#failed[@]}" != 0 ]]; then
echo "Verify failed for: ${failed[*]}"
exit 1
fi