forked from kubernetes-sigs/kwok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate-all.sh
executable file
·99 lines (80 loc) · 2.92 KB
/
update-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
#!/usr/bin/env bash
# Copyright 2023 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 [[ "${UPDATE_CODEGEN:-true}" == "true" ]]; then
echo "[*] Update codegen..."
"${ROOT_DIR}"/hack/update-codegen.sh || failed+=(codegen)
fi
if [[ "${UPDATE_CONTROLLERGEN:-true}" == "true" ]]; then
echo "[*] Update controllergen..."
"${ROOT_DIR}"/hack/update-controllergen.sh || failed+=(controllergen)
fi
if [[ "${UPDATE_GO_FORMAT:-true}" == "true" ]]; then
echo "[*] Update go format..."
"${ROOT_DIR}"/hack/update-go-format.sh || failed+=(go-format)
fi
if [[ "${UPDATE_GO_MOD:-true}" == "true" ]]; then
echo "[*] Update go mod..."
"${ROOT_DIR}"/hack/update-go-mod.sh || failed+=(go-mod)
fi
if [[ "${UPDATE_GO_LINT:-true}" == "true" ]]; then
echo "[*] Update go lint..."
"${ROOT_DIR}"/hack/update-go-lint.sh || failed+=(go-lint)
fi
if [[ "${UPDATE_ENDS_NEWLINE:-true}" == "true" ]]; then
echo "[*] Update ends newline..."
"${ROOT_DIR}"/hack/update-ends-newline.sh || failed+=(ends-newline)
fi
if [[ "${UPDATE_CMD_DOCS:-true}" == "true" ]]; then
echo "[*] Update cmd docs..."
"${ROOT_DIR}"/hack/update-cmd-docs.sh || failed+=(cmd-docs)
fi
if [[ "${UPDATE_API_DOCS:-true}" == "true" ]]; then
echo "[*] Update api docs..."
"${ROOT_DIR}"/hack/update-api-docs.sh || failed+=(api-docs)
fi
if [[ "${UPDATE_SHELL_FORMAT:-true}" == "true" ]]; then
echo "[*] Update shell format..."
"${ROOT_DIR}"/hack/update-shell-format.sh || failed+=(shell-format)
fi
if [[ "${UPDATE_YAML_FORMAT:-true}" == "true" ]]; then
echo "[*] Update yaml format..."
"${ROOT_DIR}"/hack/update-yaml-format.sh || failed+=(yaml-format)
fi
if [[ "${UPDATE_SPELLING:-true}" == "true" ]]; then
echo "[*] Update spelling..."
"${ROOT_DIR}"/hack/update-spelling.sh || failed+=(spelling)
fi
if [[ "${UPDATE_STAGES:-true}" == "true" ]]; then
echo "[*] Update stages..."
"${ROOT_DIR}"/hack/update-stages.sh || failed+=(stages)
fi
if [[ "${UPDATE_HELM_CHARTS:-true}" == "true" ]]; then
echo "[*] Update helm charts..."
"${ROOT_DIR}"/hack/update-helm-charts.sh || failed+=(helm-charts)
fi
if [[ "${UPDATE_DRY_RUN_TESTDATA:-true}" == "true" ]]; then
echo "[*] Update testdata..."
"${ROOT_DIR}"/hack/update-testdata.sh || failed+=(testdata)
fi
if [[ "${#failed[@]}" != 0 ]]; then
echo "Update failed for: ${failed[*]}"
exit 1
fi