File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ pipeline_timeout = 10
88pipeline {
99 parameters {
1010 choice(
11- choices : [ ' AWS ' ,' Hetzner ' ],
11+ choices : [ ' Hetzner ' ,' AWS ' ],
1212 description : ' Cloud infra for build' ,
1313 name : ' CLOUD' )
1414 string(
@@ -42,7 +42,7 @@ pipeline {
4242 name : ' PAT_TAG' ,
4343 trim : true )
4444 choice(
45- choices : ' PXC84 \n PXC80\n PXC57' ,
45+ choices : ' PXC96 \n PXC84 \n PXC80\n PXC57' ,
4646 description : ' PXC version to test proxysql-admin suite' ,
4747 name : ' PXC_VERSION' )
4848 choice(
Original file line number Diff line number Diff line change 66# CMAKE_BUILD_TYPE = (RelWithDebInfo Debug)
77# DEFAULT_TESTING = (yes no)
88# QA_ARGS
9- # PXC_VERSION = (PXC57 PXC80 PXC84)
9+ # PXC_VERSION = (PXC57 PXC80 PXC84 PXC96 )
1010
1111set -o errexit
1212set -o xtrace
@@ -168,7 +168,21 @@ if [ -f /usr/bin/apt ]; then
168168 install_package wget gnupg2 lsb-release curl
169169fi
170170
171- if [[ " ${PXC_VERSION} " == " PXC84" ]]; then
171+ if [[ " ${PXC_VERSION} " == " PXC96" ]]; then
172+ # Fetch PXC versions
173+ LATEST_VERSION_96=$( git ls-remote --refs --sort=' version:refname' --tags https://github.com/percona/percona-xtradb-cluster | \
174+ grep ' Percona-XtraDB-Cluster-9.6' | tail -n1 | cut -d ' /' -f3 | cut -d ' -' -f4)
175+ VERSION_SUFFIX_96=$( git ls-remote --refs --sort=' version:refname' --tags https://github.com/percona/percona-xtradb-cluster | \
176+ grep ' Percona-XtraDB-Cluster-9.6' | tail -n1 | cut -d ' /' -f3 | cut -d ' -' -f5)
177+
178+ # Downloading PXC-9.6 tarball package
179+ sudo wget -q -O ${WORKDIR_ABS} /WORKDIR/Percona-XtraDB-Cluster_${LATEST_VERSION_96} _Linux.x86_64.glibc${glibc_version} -minimal.tar.gz\
180+ http://downloads.percona.com/downloads/TESTING/pxc-9.6.0/Percona-XtraDB-Cluster_9.6.0-1.1_Linux.x86_64.glibc2.35-minimal.tar.gz
181+
182+ # Installing PXC-9.6 client package
183+ enable_repo pxc-9x-innovation testing
184+ install_package percona-xtradb-cluster-client
185+ elif [[ " ${PXC_VERSION} " == " PXC84" ]]; then
172186 # Fetch PXC versions
173187 LATEST_VERSION_84=$( git ls-remote --refs --sort=' version:refname' --tags https://github.com/percona/percona-xtradb-cluster | \
174188 grep ' Percona-XtraDB-Cluster-8.4' | tail -n1 | cut -d ' /' -f3 | cut -d ' -' -f4)
You can’t perform that action at this time.
0 commit comments