mirror of https://github.com/citusdata/citus.git
23 lines
584 B
YAML
23 lines
584 B
YAML
name: save_regressions
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Regressions
|
|
run: |-
|
|
if [ -f "src/test/regress/regression.diffs" ]; then
|
|
cat src/test/regress/regression.diffs
|
|
exit 1
|
|
fi
|
|
if: failure()
|
|
shell: bash
|
|
- uses: actions/upload-artifact@v3.1.1
|
|
if: ${{ matrix.id == '' }}
|
|
with:
|
|
name: regression.diffs
|
|
path: src/test/regress/regression.diffs
|
|
- uses: actions/upload-artifact@v3.1.1
|
|
if: ${{ matrix.id != '' }}
|
|
with:
|
|
path: src/test/regress/regression.diffs
|
|
name: regression_${{ matrix.id }}.diffs
|