From 450dcd682a948f03514d36b0594add82167d3827 Mon Sep 17 00:00:00 2001 From: Surabhi Bhat Date: Wed, 21 Aug 2024 10:20:48 +0530 Subject: [PATCH] PKG-158 Use glibc 2.28 tarball for ubuntu/debian testing --- storage/innobase/xtrabackup/test/bootstrap.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/storage/innobase/xtrabackup/test/bootstrap.sh b/storage/innobase/xtrabackup/test/bootstrap.sh index 5f8d4054a18..6cee222a036 100755 --- a/storage/innobase/xtrabackup/test/bootstrap.sh +++ b/storage/innobase/xtrabackup/test/bootstrap.sh @@ -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}