Skip to content

Commit

Permalink
_bumper.sh: detect latest llvm release offered by debian-testing [ci …
Browse files Browse the repository at this point in the history
…skip]
  • Loading branch information
vszakats committed Oct 7, 2023
1 parent c5f1026 commit 4e41a26
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions _bumper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@ export _BRANCH="${1:-}"

./_dl.sh bump

# Find out the latest llvm version offered by Debian testing

llvm_latest="$(curl --disable --user-agent '' --silent --fail --show-error \
'https://packages.debian.org/search?keywords=llvm&searchon=names&suite=testing&section=all' \
| hxclean | hxselect -i -c -s '\n' 'h3' \
| grep -a -o -E 'llvm-[0-9]+' | sort -u | tail -1)"

echo; echo "export CW_CCSUFFIX='$(echo "${llvm_latest}" | cut -c 5-)' # ${llvm_latest}"

# Find out the latest docker image release:

name='debian'
Expand Down

0 comments on commit 4e41a26

Please sign in to comment.