Skip to content

Commit

Permalink
PKG-158 Use glibc 2.28 tarball for ubuntu/debian testing
Browse files Browse the repository at this point in the history
  • Loading branch information
surbhat1595 committed Aug 21, 2024
1 parent ecb5902 commit 4a8577a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion storage/innobase/xtrabackup/test/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,11 @@ main () {
innodb80)
url="https://dev.mysql.com/get/Downloads/MySQL-8.1"
fallback_url="https://downloads.mysql.com/archives/get/p/23/file"
tarball="mysql-${VERSION}-linux-glibc2.17-${arch}.tar.xz"
if [ "${OS}" == "deb" ]; then
tarball="mysql-${VERSION}-linux-glibc2.28-${arch}.tar.xz"
else
tarball="mysql-${VERSION}-linux-glibc2.17-${arch}.tar.xz"
fi
if ! check_url "${url}" "${tarball}"; then
unset url
url=${fallback_url}
Expand Down

0 comments on commit 4a8577a

Please sign in to comment.