Skip to content

Commit 96015ff

Browse files
committed
tmp
1 parent a99d985 commit 96015ff

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test-package-installation.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Test Package Installation
22

33
on:
4+
push:
5+
branches:
6+
- all-citus-test-installation-workflow
47
workflow_dispatch:
58
inputs:
69
pg_major_version:
@@ -15,6 +18,8 @@ on:
1518
env:
1619
# Branch whose build-package.yml defines the canonical platform list
1720
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' }}
1823

1924
jobs:
2025
discover_platforms:
@@ -63,5 +68,5 @@ jobs:
6368
run: |
6469
python3 test_package_installation/run_test.py \
6570
"${{ 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

Comments
 (0)