mirror of https://github.com/citusdata/citus.git
fix
parent
b4a4d89854
commit
80f05bcefc
|
|
@ -137,7 +137,11 @@ jobs:
|
||||||
- params
|
- params
|
||||||
- build
|
- build
|
||||||
with:
|
with:
|
||||||
pg_versions: '[${{ needs.params.outputs.pg16_version }}, ${{ needs.params.outputs.pg17_version }}]'
|
pg_versions: >
|
||||||
|
[
|
||||||
|
${{ needs.params.outputs.pg16_version }},
|
||||||
|
${{ needs.params.outputs.pg17_version }}
|
||||||
|
]
|
||||||
make_targets: '["check-split", "check-multi"]'
|
make_targets: '["check-split", "check-multi"]'
|
||||||
image_suffix: ${{ needs.params.outputs.image_suffix }}
|
image_suffix: ${{ needs.params.outputs.image_suffix }}
|
||||||
image_name: ${{ needs.params.outputs.test_image_name }}
|
image_name: ${{ needs.params.outputs.test_image_name }}
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
name: PG${{ fromJson(matrix.pg_version).major }} - ${{ matrix.make }}${{ inputs.citus_version && format(' - {0}', inputs.citus_version) || '' }}
|
name: PG${{ matrix.pg_version.major }} - ${{ matrix.make }}${{ inputs.citus_version && format(' - {0}', inputs.citus_version) || '' }} - New
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
|
@ -36,7 +36,7 @@ jobs:
|
||||||
make: ${{ fromJson(inputs.make_targets) }}
|
make: ${{ fromJson(inputs.make_targets) }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: "${{ inputs.image_name }}:${{ fromJson(matrix.pg_version).full }}${{ inputs.image_suffix }}"
|
image: "${{ inputs.image_name }}:${{ matrix.pg_version.full }}${{ inputs.image_suffix }}"
|
||||||
options: >-
|
options: >-
|
||||||
--user root
|
--user root
|
||||||
--dns=8.8.8.8
|
--dns=8.8.8.8
|
||||||
|
|
@ -51,7 +51,7 @@ jobs:
|
||||||
- uses: "./.github/actions/save_logs_and_results"
|
- uses: "./.github/actions/save_logs_and_results"
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
folder: ${{ fromJson(matrix.pg_version).major }}_${{ matrix.make }}${{ inputs.citus_version && format('_{0}', inputs.citus_version) || '' }}
|
folder: ${{ matrix.pg_version.major }}_${{ matrix.make }}${{ inputs.citus_version && format('_{0}', inputs.citus_version) || '' }}
|
||||||
- uses: "./.github/actions/upload_coverage"
|
- uses: "./.github/actions/upload_coverage"
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue