mirror of https://github.com/citusdata/citus.git
Try to evaluate env variable case-sensitivity
parent
20f8baabe8
commit
c77306d26d
|
@ -49,10 +49,10 @@ jobs:
|
||||||
run: "./ci/build-citus.sh"
|
run: "./ci/build-citus.sh"
|
||||||
- uses: actions/upload-artifact@v3.1.1
|
- uses: actions/upload-artifact@v3.1.1
|
||||||
with:
|
with:
|
||||||
name: build-${{ env.pg_major }}
|
name: build-${{ env.PG_MAJOR }}
|
||||||
path: |-
|
path: |-
|
||||||
./build-${{ env.pg_major }}/*
|
./build-${{ env.PG_MAJOR }}/*
|
||||||
./install-${{ env.pg_major }}.tar
|
./install-${{ env.PG_MAJOR }}.tar
|
||||||
prepare_parallelization_matrix:
|
prepare_parallelization_matrix:
|
||||||
name: Prepare parallelization matrix
|
name: Prepare parallelization matrix
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -84,7 +84,7 @@ jobs:
|
||||||
- uses: actions/checkout@v3.5.0
|
- uses: actions/checkout@v3.5.0
|
||||||
- uses: actions/download-artifact@v3.0.1
|
- uses: actions/download-artifact@v3.0.1
|
||||||
with:
|
with:
|
||||||
name: build-${{ env.pg_major }}
|
name: build-${{ env.PG_MAJOR }}
|
||||||
- name: Detect regression tests need to be ran
|
- name: Detect regression tests need to be ran
|
||||||
id: detect-regression-tests
|
id: detect-regression-tests
|
||||||
run: |-
|
run: |-
|
||||||
|
@ -104,8 +104,6 @@ jobs:
|
||||||
fi
|
fi
|
||||||
echo "tests=$tests" >> "$GITHUB_OUTPUT"
|
echo "tests=$tests" >> "$GITHUB_OUTPUT"
|
||||||
- uses: "./.github/actions/install_extension"
|
- uses: "./.github/actions/install_extension"
|
||||||
with:
|
|
||||||
pg_major: "${{ env.pg_major }}"
|
|
||||||
- uses: "./.github/actions/configure"
|
- uses: "./.github/actions/configure"
|
||||||
- uses: "./.github/actions/enable_core"
|
- uses: "./.github/actions/enable_core"
|
||||||
- name: Run minimal tests
|
- name: Run minimal tests
|
||||||
|
|
Loading…
Reference in New Issue