mirror of https://github.com/citusdata/citus.git
Fix install_extension
parent
de7d896ac4
commit
a80186d7f8
|
@ -6,7 +6,14 @@ runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
- name: Expose $PG_MAJOR to Github Env
|
- name: Expose $PG_MAJOR to Github Env
|
||||||
run: echo "PG_MAJOR=${{ inputs.pg_major || env.PG_MAJOR }}" >> $GITHUB_ENV
|
run: |-
|
||||||
|
if [ -z "${{ inputs.pg_major }}"]; then
|
||||||
|
echo "PG_MAJOR=${{ inputs.pg_major}}" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "PG_MAJOR=${{ env.PG_MAJOR }}" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
|
echo "inputs.pg_major : ${{ inputs.pg_major }}"
|
||||||
|
echo "env.pg_major : ${{ env.PG_MAJOR }}"
|
||||||
shell: bash
|
shell: bash
|
||||||
- uses: actions/download-artifact@v3.0.1
|
- uses: actions/download-artifact@v3.0.1
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -397,7 +397,6 @@ jobs:
|
||||||
test-flakyness-pre:
|
test-flakyness-pre:
|
||||||
name: Detect regression tests need to be ran
|
name: Detect regression tests need to be ran
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
|
||||||
outputs:
|
outputs:
|
||||||
tests: ${{ steps.detect-regression-tests.outputs.tests }}
|
tests: ${{ steps.detect-regression-tests.outputs.tests }}
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in New Issue