mirror of https://github.com/citusdata/citus.git
skip_installation for test-citus-upgrade
parent
e3689c57dd
commit
95c9d26de1
|
@ -2,6 +2,9 @@ name: install_extension
|
|||
inputs:
|
||||
pg_major:
|
||||
required: false
|
||||
skip_installation:
|
||||
required: false
|
||||
default: false
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
|
@ -20,6 +23,7 @@ runs:
|
|||
with:
|
||||
name: build-${{ env.PG_MAJOR }}
|
||||
- name: Install Extension
|
||||
if: ${{ inputs.skip_installation != false }}
|
||||
run: tar xfv "install-$PG_MAJOR.tar" --directory /
|
||||
shell: bash
|
||||
- name: Configure
|
||||
|
|
|
@ -298,6 +298,8 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v3.5.0
|
||||
- uses: "./.github/actions/install_extension"
|
||||
with:
|
||||
skip_installation: true
|
||||
- name: Install and test citus upgrade
|
||||
run: |-
|
||||
chown -R circleci .
|
||||
|
|
Loading…
Reference in New Issue