We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a99d985 commit 96015ffCopy full SHA for 96015ff
.github/workflows/test-package-installation.yml
@@ -1,6 +1,9 @@
1
name: Test Package Installation
2
3
on:
4
+ push:
5
+ branches:
6
+ - all-citus-test-installation-workflow
7
workflow_dispatch:
8
inputs:
9
pg_major_version:
@@ -15,6 +18,8 @@ on:
15
18
env:
16
19
# Branch whose build-package.yml defines the canonical platform list
17
20
SOURCE_BRANCH: "all-citus"
21
+ PG_MAJOR_VERSION: ${{ inputs.pg_major_version || '18' }}
22
+ CITUS_MAJOR_MINOR_VERSION: ${{ inputs.citus_major_minor_version || '14.0' }}
23
24
jobs:
25
discover_platforms:
@@ -63,5 +68,5 @@ jobs:
63
68
run: |
64
69
python3 test_package_installation/run_test.py \
65
70
"${{ matrix.platform }}" \
66
- "${{ inputs.pg_major_version }}" \
67
- "${{ inputs.citus_major_minor_version }}"
71
+ "${PG_MAJOR_VERSION}" \
72
+ "${CITUS_MAJOR_MINOR_VERSION}"
0 commit comments