-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tamal Saha <[email protected]>
- Loading branch information
Showing
2 changed files
with
138 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
kubestash/apimachinery | ||
kubestash/cli | ||
kubestash/installer | ||
kubestash/kubedump | ||
kubestash/kubestash | ||
kubestash/manifest | ||
kubestash/pvc | ||
kubestash/volume-snapshotter | ||
kubestash/workload |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
#!/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=go122 # -$(date +%s) | ||
COMMIT_MSG="Use Go 1.22" | ||
|
||
REPO_ROOT=/tmp/stash-repo-refresher | ||
|
||
API_REF=${API_REF:-c5efabadb} | ||
|
||
OLD_VER=0.16.0 | ||
NEW_VER=0.16.4 | ||
|
||
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/?=\ 1.21/?=\ 1.22/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 | ||
sed -i "s|RESTIC_VER\([[:space:]]*\):= ${OLD_VER}|RESTIC_VER\1:= ${NEW_VER}|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" * | ||
|
||
sed -i 's/Go\ 1.21/Go\ 1.22/g' * | ||
sed -i 's/go-version:\ ^1.21/go-version:\ ^1.22/g' * | ||
sed -i 's/go-version:\ 1.21/go-version:\ 1.22/g' * | ||
sed -i "s/go-version:\ '1.21'/go-version:\ '1.22'/g" * | ||
popd | ||
} | ||
|
||
if [ -f go.mod ]; then | ||
go mod edit \ | ||
-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/[email protected] \ | ||
-require=go.bytebuilders.dev/[email protected] \ | ||
-require=golang.org/x/[email protected] \ | ||
-require=github.com/golang/[email protected] \ | ||
-require=google.golang.org/[email protected] \ | ||
-require=github.com/docker/[email protected]+incompatible \ | ||
-require=github.com/docker/[email protected]+incompatible | ||
|
||
# -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 | ||
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 \ | ||
--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 |