mirror of https://github.com/citusdata/citus.git
fix
parent
b4a4d89854
commit
80f05bcefc
|
|
@ -137,7 +137,11 @@ jobs:
|
|||
- params
|
||||
- build
|
||||
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"]'
|
||||
image_suffix: ${{ needs.params.outputs.image_suffix }}
|
||||
image_name: ${{ needs.params.outputs.test_image_name }}
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ on:
|
|||
|
||||
jobs:
|
||||
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:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
@ -36,7 +36,7 @@ jobs:
|
|||
make: ${{ fromJson(inputs.make_targets) }}
|
||||
runs-on: ubuntu-latest
|
||||
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: >-
|
||||
--user root
|
||||
--dns=8.8.8.8
|
||||
|
|
@ -51,7 +51,7 @@ jobs:
|
|||
- uses: "./.github/actions/save_logs_and_results"
|
||||
if: always()
|
||||
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"
|
||||
if: always()
|
||||
with:
|
||||
|
|
|
|||
Loading…
Reference in New Issue