Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
saikumar-vs committed Jul 22, 2024
1 parent 5c03402 commit 0537804
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/PMM_PDPGSQL.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
. virtenv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
python pmm-framework.py --verbose --pmm-server-password=${{ env.ADMIN_PASSWORD }} --client_version==${{ env.PMM_CLIENT_VERSION }} --database PDPGSQL=${{ env.PDPGSQL_VERSION }}
python pmm-framework.py --verbose --pmm-server-password=${{ env.ADMIN_PASSWORD }} --client_version=${{ env.PMM_CLIENT_VERSION }} --database PDPGSQL=${{ env.PDPGSQL_VERSION }}
- name: Checkout PMM UI tests
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/PMM_PS.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ jobs:
pip install --upgrade pip
pip install -r requirements.txt
if [[ "${{ github.event.inputs.ps_version }}" != http* ]]; then
python pmm-framework.py --verbose --pmm-server-password=${{ env.ADMIN_PASSWORD }} --client_version==${{ env.PMM_CLIENT_VERSION }} --database PS=${{ env.PS_VERSION }}
python pmm-framework.py --verbose --pmm-server-password=${{ env.ADMIN_PASSWORD }} --client_version=${{ env.PMM_CLIENT_VERSION }} --database PS=${{ env.PS_VERSION }}
else
python pmm-framework.py --verbose --pmm-server-password=${{ env.ADMIN_PASSWORD }} --client_version==${{ env.PMM_CLIENT_VERSION }} --database PS,TARBALL=${{ env.PS_TARBALL_PATH }}
python pmm-framework.py --verbose --pmm-server-password=${{ env.ADMIN_PASSWORD }} --client_version=${{ env.PMM_CLIENT_VERSION }} --database PS,TARBALL=${{ env.PS_TARBALL_PATH }}
fi
- name: Checkout PMM UI tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PMM_PXC.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
pip install --upgrade pip
pip install -r requirements.txt
if [[ "${{ github.event.inputs.pxc_version }}" != http* ]]; then
python pmm-framework.py --verbose --pmm-server-password=${{ env.ADMIN_PASSWORD }} --client_version==${{ env.PMM_CLIENT_VERSION }} --database PXC=${{ env.PXC_VERSION }}
python pmm-framework.py --verbose --pmm-server-password=${{ env.ADMIN_PASSWORD }} --client_version=${{ env.PMM_CLIENT_VERSION }} --database PXC=${{ env.PXC_VERSION }}
else
python pmm-framework.py --verbose --pmm-server-password=${{ env.ADMIN_PASSWORD }} --client_version=${{ env.PMM_CLIENT_VERSION }} --database PXC,TARBALL=${{ env.PXC_TARBALL_PATH }}
fi
Expand Down

0 comments on commit 0537804

Please sign in to comment.