osmocom-list-commits: use proper git clone urls

Fix the Osmocom-list-commits jenkins job that is currently failing with:
  fatal: repository 'https://git.osmocom.org/osmo-upf/' not found

Change-Id: I2acb9880be57411f11805a2195076b514156aaf3
This commit is contained in:
Oliver Smith 2022-08-17 14:35:29 +02:00 committed by osmith
parent 7057a9f55d
commit 43d5155b2e
2 changed files with 8 additions and 3 deletions

View File

@ -52,7 +52,9 @@ OSMO_BRANCH_DOCKER_PLAYGROUND="${OSMO_BRANCH_DOCKER_PLAYGROUND:-master}"
osmo_git_head_commit() { osmo_git_head_commit() {
# git output: # git output:
# f90496f577e78944ce8db1aa5b900477c1e479b0 HEAD # f90496f577e78944ce8db1aa5b900477c1e479b0 HEAD
ret="$(git ls-remote "$OSMO_GIT_URL/$1" HEAD)" local url ret
url="$(osmo_git_clone_url "$1")"
ret="$(git ls-remote "$url" HEAD)"
ret="$(echo "$ret" | awk '{print $1}')" ret="$(echo "$ret" | awk '{print $1}')"
echo "$ret" echo "$ret"
} }
@ -72,7 +74,9 @@ osmo_git_last_commits_tags() {
# ee618ecbedec82dfd240334bc87d0d1c806477b0 refs/tags/debian/0.9.13-0_jrsantos.1 # ee618ecbedec82dfd240334bc87d0d1c806477b0 refs/tags/debian/0.9.13-0_jrsantos.1
# a3fdd24af099b449c9856422eb099fb45a5595df refs/tags/debian/0.9.13-0_jrsantos.1^{} # a3fdd24af099b449c9856422eb099fb45a5595df refs/tags/debian/0.9.13-0_jrsantos.1^{}
# ... # ...
ret="$(git ls-remote --tags "$OSMO_GIT_URL/$1")" local url ret
url="$(osmo_git_clone_url "$1")"
ret="$(git ls-remote --tags "$url")"
ret="$(echo "$ret" | grep 'refs/tags/[0-9.]*$' || true)" ret="$(echo "$ret" | grep 'refs/tags/[0-9.]*$' || true)"
ret="$(echo "$ret" | sort -V -t/ -k3)" ret="$(echo "$ret" | sort -V -t/ -k3)"
if [ "$2" != "all" ]; then if [ "$2" != "all" ]; then

View File

@ -15,10 +15,11 @@ for repo in $OSMO_RELEASE_REPOS; do
last_tag="$(osmo_git_last_tags "$repo" 1 "-")" last_tag="$(osmo_git_last_tags "$repo" 1 "-")"
last_commit="$(osmo_git_last_commits "$repo" 1 "-")" last_commit="$(osmo_git_last_commits "$repo" 1 "-")"
head_commit="$(osmo_git_head_commit "$repo")" head_commit="$(osmo_git_head_commit "$repo")"
clone_url="$(osmo_git_clone_url "$repo")"
printf "$FORMAT_STR" \ printf "$FORMAT_STR" \
"$repo.git" \ "$repo.git" \
"$OSMO_GIT_URL/$repo" \ "$clone_url" \
"$last_tag" \ "$last_tag" \
"$last_commit" \ "$last_commit" \
"$head_commit" "$head_commit"