-
Notifications
You must be signed in to change notification settings - Fork 0
/
dep-refresh.sh
executable file
·126 lines (113 loc) · 4.52 KB
/
dep-refresh.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
123
124
125
126
#!/bin/bash
# set -eou pipefail
SCRIPT_ROOT=$(realpath $(dirname "${BASH_SOURCE[0]}"))
SCRIPT_NAME=$(basename "${BASH_SOURCE[0]}")
GITHUB_USER=${GITHUB_USER:-1gtm}
PR_BRANCH=k129-auto # -$(date +%s)
COMMIT_MSG="Use k8s 1.29 client libs"
REPO_ROOT=/tmp/kubedb-repo-refresher
API_REF=${API_REF:-9853d93f}
repo_uptodate() {
# gomodfiles=(go.mod go.sum vendor/modules.txt)
gomodfiles=(go.sum vendor/modules.txt)
changed=($(git diff --name-only))
changed+=("${gomodfiles[@]}")
# https://stackoverflow.com/a/28161520
diff=($(echo ${changed[@]} ${gomodfiles[@]} | tr ' ' '\n' | sort | uniq -u))
return ${#diff[@]}
}
refresh() {
echo "refreshing repository: $1"
rm -rf $REPO_ROOT
mkdir -p $REPO_ROOT
pushd $REPO_ROOT
git clone --no-tags --no-recurse-submodules --depth=1 [email protected]:$1.git
name=$(ls -b1)
cd $name
git checkout -b $PR_BRANCH
sed -i 's/?=\ 1.20/?=\ 1.21/g' Makefile
sed -i 's|appscode/gengo:release-1.25|appscode/gengo:release-1.29|g' Makefile
sed -i 's/goconst,//g' Makefile
sed -i 's|gcr.io/distroless/static-debian11|gcr.io/distroless/static-debian12|g' Makefile
sed -i 's|debian:bullseye|debian:bookworm|g' Makefile
pushd .github/workflows/ && {
# update GO
sed -i 's/Go\ 1.20/Go\ 1.21/g' *
sed -i 's/go-version:\ ^1.20/go-version:\ ^1.21/g' *
sed -i 's/go-version:\ 1.20/go-version:\ 1.21/g' *
sed -i "s/go-version:\ '1.20'/go-version:\ '1.21'/g" *
popd
}
if [ -f go.mod ]; then
go mod edit \
-require=kubevault.dev/apimachinery@${API_REF} \
-require=gomodules.xyz/[email protected] \
-require=kubedb.dev/[email protected] \
-require=kubedb.dev/[email protected] \
-require=kmodules.xyz/[email protected] \
-require=kmodules.xyz/[email protected] \
-require=kmodules.xyz/[email protected] \
-require=kmodules.xyz/[email protected] \
-require=gomodules.xyz/[email protected] \
-require=go.bytebuilders.dev/[email protected] \
-require=go.bytebuilders.dev/license-verifier/[email protected] \
-require=go.bytebuilders.dev/audit@3ff33160c6f02f6151e59cdd44dd50a347c02ba0 \
-require=github.com/elastic/go-elasticsearch/[email protected] \
-require=go.mongodb.org/[email protected] \
-replace=github.com/Masterminds/sprig/v3=github.com/gomodules/sprig/[email protected] \
-replace=sigs.k8s.io/controller-runtime=github.com/kmodules/[email protected] \
-replace=github.com/imdario/mergo=github.com/imdario/[email protected] \
-replace=k8s.io/apiserver=github.com/kmodules/[email protected] \
-replace=k8s.io/kubernetes=github.com/kmodules/[email protected] \
-require=github.com/docker/[email protected]+incompatible \
-require=github.com/docker/[email protected]+incompatible
# sed -i 's|NewLicenseEnforcer|MustLicenseEnforcer|g' `grep 'NewLicenseEnforcer' -rl *`
go mod tidy
go mod vendor
fi
[ -z "$2" ] || (
echo "$2"
$2 || true
# run an extra make fmt because when make gen fails, make fmt is not run
make fmt || true
)
make fmt || true
if repo_uptodate; then
echo "Repository $1 is up-to-date."
else
git add --all
if [[ "$1" == *"stashed"* ]]; then
git commit -a -s -m "$COMMIT_MSG" -m "/cherry-pick"
else
git commit -a -s -m "$COMMIT_MSG"
fi
git push -u origin HEAD -f
hub pull-request \
--labels automerge \
--message "$COMMIT_MSG" \
--message "Signed-off-by: $(git config --get user.name) <$(git config --get user.email)>" || true
# gh pr create \
# --base master \
# --fill \
# --label automerge \
# --reviewer tamalsaha
fi
popd
}
if [ "$#" -ne 1 ]; then
echo "Illegal number of parameters"
echo "Correct usage: $SCRIPT_NAME <path_to_repos_list>"
exit 1
fi
if [ -x $GITHUB_TOKEN ]; then
echo "Missing env variable GITHUB_TOKEN"
exit 1
fi
# ref: https://linuxize.com/post/how-to-read-a-file-line-by-line-in-bash/#using-file-descriptor
while IFS=, read -r -u9 repo cmd; do
if [ -z "$repo" ]; then
continue
fi
refresh "$repo" "$cmd"
echo "################################################################################"
done 9<$1