Skip to content

Commit

Permalink
Updates fix gh triggers for PS and Proxysql (#101)
Browse files Browse the repository at this point in the history
* Updates fix gh triggers for PS and Proxysql

* Updates PDPGSQL version default to 17
  • Loading branch information
saikumar-vs authored Dec 10, 2024
1 parent 7075595 commit c063f46
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/PMM_PDPGSQL.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ on:
workflow_dispatch:
inputs:
pdpgsql_version:
description: "PDPGSQL Version available Image versions on github, example: 14, 15, 16"
description: "PDPGSQL Version available Image versions on github, example: 15, 16, 17"
required: true
default: '16'
default: '17'
type: string
pmm_qa_branch:
description: "Branch for qa-integration to checkout"
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
timeout-minutes: 20
env:
ADMIN_PASSWORD: 'admin'
PDPGSQL_VERSION: ${{ github.event.inputs.pdpgsql_version || '16' }}
PDPGSQL_VERSION: ${{ github.event.inputs.pdpgsql_version || '17' }}
PMM_IMAGE: ${{ github.event.inputs.pmm_server_image || 'perconalab/pmm-server:3-dev-latest' }}
PMM_QA_BRANCH: ${{ github.event.inputs.pmm_qa_branch || 'v3' }}
PMM_UI_BRANCH: ${{ github.event.inputs.pmm_ui_tests_branch || 'v3' }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PMM_PXC_PROXYSQL
name: PMM_PROXYSQL
on:
workflow_dispatch:
inputs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/PMM_PS.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
default: 'https://github.com/Percona-QA/package-testing/blob/master/VERSIONS'
required: true
ps_glibc:
description: "ps glibc version, example: 2.28"
default: '2.28'
description: "ps glibc version, example: 2.35"
default: '2.35'
required: false
pmm_qa_branch:
description: "Branch for qa-integration to checkout"
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
env:
ADMIN_PASSWORD: 'admin'
PS_VERSION: ${{ github.event.inputs.ps_version || '8.0' }}
PS_GLIBC: ${{ github.event.inputs.ps_glibc || '2.28' }}
PS_GLIBC: ${{ github.event.inputs.ps_glibc || '2.35' }}
PMM_SERVER_IMAGE: ${{ github.event.inputs.pmm_server_image || 'perconalab/pmm-server:3-dev-latest' }}
PMM_QA_BRANCH: ${{ github.event.inputs.pmm_qa_branch || 'v3' }}
PMM_UI_BRANCH: ${{ github.event.inputs.pmm_ui_tests_branch || 'v3' }}
Expand Down

0 comments on commit c063f46

Please sign in to comment.