Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
saikumar-vs committed Jul 16, 2024
1 parent 969d67c commit 240583e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/PMM_PS.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,11 @@ jobs:
. virtenv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
python pmm-framework.py --pmm-server-password=${{ env.ADMIN_PASSWORD }} --verbose --database PS=${{ env.PS_VERSION }},TARBALL=${{ env.PS_TARBALL_PATH }}
if [[ "${{ github.event.inputs.ps_version }}" != http* ]]; then
python pmm-framework.py --pmm-server-password=${{ env.ADMIN_PASSWORD }} --verbose --database PS=${{ env.PS_VERSION }}
else
python pmm-framework.py --pmm-server-password=${{ env.ADMIN_PASSWORD }} --verbose --database PS,TARBALL=${{ env.PS_TARBALL_PATH }}
fi
- name: Checkout PMM UI tests
uses: actions/checkout@v4
Expand Down

0 comments on commit 240583e

Please sign in to comment.