From 1cc592d616a38f720f479aa32905ffbe0d7b3aa5 Mon Sep 17 00:00:00 2001 From: panchal-yash Date: Fri, 7 Jul 2023 21:40:28 +0530 Subject: [PATCH] test changes added by Sai check with the tarball path --- .github/workflows/PMM_PS.yaml | 2 +- pmm_ps_setup/start-pmm-ps.sh | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/PMM_PS.yaml b/.github/workflows/PMM_PS.yaml index 4702ed2..b84bc55 100644 --- a/.github/workflows/PMM_PS.yaml +++ b/.github/workflows/PMM_PS.yaml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-20.04 timeout-minutes: 20 env: - PS_VERSION: ${{ github.event.inputs.ps_version || '8.0' }} + PS_VERSION: ${{ github.event.inputs.ps_version || '8.0.33-25' }} PMM_IMAGE: ${{ github.event.inputs.pmm_image || 'perconalab/pmm-server:dev-latest' }} steps: - uses: actions/checkout@v2 diff --git a/pmm_ps_setup/start-pmm-ps.sh b/pmm_ps_setup/start-pmm-ps.sh index ae737aa..0f903b0 100644 --- a/pmm_ps_setup/start-pmm-ps.sh +++ b/pmm_ps_setup/start-pmm-ps.sh @@ -10,7 +10,7 @@ PS_TARBALL_PATH=https://downloads.percona.com/downloads/TESTING/ps-$PS_VERSION/P # Delete if the Repo already checkedout sudo rm -r pmm-qa || true -git clone -b main https://github.com/percona/pmm-qa/ +git clone -b PMM-7-tarball-ms-pxc https://github.com/percona/pmm-qa/ cd pmm-qa @@ -24,7 +24,8 @@ docker run --detach --restart always --publish 443:443 --name pmm-server $PMM_IM cd pmm-tests #Run for ms version and ms client 1 -./pmm-framework.sh --ps-version $PS_VERSION --addclient=ms,1 --pmm2 +./pmm-framework.sh --ps-version ps-$PS_VERSION --addclient=ms,1 --pmm2 --ms-tarball $PS_TARBALL_PATH + #Run for ps version and ps client 1 -./pmm-framework.sh --ps-version $PS_VERSION --addclient=ps,1 --pmm2 +./pmm-framework.sh --ps-version ps-$PS_VERSION --addclient=ps,1 --pmm2 --ms-tarball $PS_TARBALL_PATH