Skip to content

Commit

Permalink
Remove bionic for site checks (#623)
Browse files Browse the repository at this point in the history
  • Loading branch information
eleo007 authored Jan 17, 2024
1 parent 616cdda commit e46e043
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions site_checks/test_pdpxc.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
DEB_SOFTWARE_FILES=['buster', 'bullseye', 'bookworm', 'focal', 'jammy']
RHEL_SOFTWARE_FILES=['redhat/7', 'redhat/8', 'redhat/9']
elif version.parse(PXC_VER_PERCONA) > version.parse("8.0.0") and version.parse(PXC_VER_PERCONA) < version.parse("8.1.0"):
DEB_SOFTWARE_FILES=['buster', 'bullseye', 'bookworm', 'bionic', 'focal', 'jammy']
DEB_SOFTWARE_FILES=['buster', 'bullseye', 'bookworm', 'focal', 'jammy']
RHEL_SOFTWARE_FILES=['redhat/7', 'redhat/8', 'redhat/9']
elif version.parse(PXC_VER_PERCONA) > version.parse("5.7.0") and version.parse(PXC_VER_PERCONA) < version.parse("8.0.0"):
assert not version.parse(PXC_VER_PERCONA) > version.parse("5.7.0") and version.parse(PXC_VER_PERCONA) < version.parse("8.0.0"), "PS 5.7 is not suported"
Expand Down Expand Up @@ -77,7 +77,7 @@ def get_package_tuples():
assert "percona-xtrabackup-" + PXB_VER+ "-Linux-x86_64.glibc" + glibc_version + "-minimal.tar.gz" in req.text
assert "percona-xtrabackup-" + PXB_VER+ "-Linux-x86_64.glibc" + glibc_version + ".tar.gz" in req.text
# Check ProxySQL
glibc_versions=["2.17","2.23","2.27"]
glibc_versions=["2.17","2.23"]
for glibc_version in glibc_versions:
assert "proxysql-" + PROXYSQL_VER + "-Linux-x86_64.glibc" + glibc_version + ".tar.gz" in req.text
# Test source tarballs
Expand Down
2 changes: 1 addition & 1 deletion site_checks/test_pxc.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
DEB_SOFTWARE_FILES=['buster','bullseye', 'bookworm', 'focal', 'jammy']
RHEL_SOFTWARE_FILES=['redhat/7', 'redhat/8', 'redhat/9']
elif version.parse(PXC_VER_UPSTREAM) > version.parse("8.0.0") and version.parse(PXC_VER_UPSTREAM) < version.parse("8.1.0"):
DEB_SOFTWARE_FILES=['buster','bullseye', 'bookworm', 'bionic','focal', 'jammy']
DEB_SOFTWARE_FILES=['buster','bullseye', 'bookworm', 'focal', 'jammy']
RHEL_SOFTWARE_FILES=['redhat/7', 'redhat/8', 'redhat/9']
elif version.parse(PXC_VER_UPSTREAM) > version.parse("5.7.0") and version.parse(PXC_VER_UPSTREAM) < version.parse("8.0.0"):
DEB_SOFTWARE_FILES=['buster', 'bullseye', 'bookworm', 'bionic','focal', 'jammy']
Expand Down

0 comments on commit e46e043

Please sign in to comment.