We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5f1026 commit 4e41a26Copy full SHA for 4e41a26
_bumper.sh
@@ -26,6 +26,15 @@ export _BRANCH="${1:-}"
26
27
./_dl.sh bump
28
29
+# Find out the latest llvm version offered by Debian testing
30
+
31
+llvm_latest="$(curl --disable --user-agent '' --silent --fail --show-error \
32
+ 'https://packages.debian.org/search?keywords=llvm&searchon=names&suite=testing§ion=all' \
33
+ | hxclean | hxselect -i -c -s '\n' 'h3' \
34
+ | grep -a -o -E 'llvm-[0-9]+' | sort -u | tail -1)"
35
36
+echo; echo "export CW_CCSUFFIX='$(echo "${llvm_latest}" | cut -c 5-)' # ${llvm_latest}"
37
38
# Find out the latest docker image release:
39
40
name='debian'
0 commit comments