mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-18 19:59:48 +08:00
Enable isolation tests for PG13
Enable isolation tests for PG13 in CI. Subsequent PRs will reenable further tests until all tests run against PG13.
This commit is contained in:
parent
23cd4098ef
commit
19d3912ff6
9
.github/workflows/linux-build-and-test.yaml
vendored
9
.github/workflows/linux-build-and-test.yaml
vendored
@ -101,21 +101,24 @@ jobs:
|
|||||||
|
|
||||||
- name: make installcheck
|
- name: make installcheck
|
||||||
id: installcheck
|
id: installcheck
|
||||||
if: matrix.pg != '13.1'
|
|
||||||
run: |
|
run: |
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
if [[ "${{ matrix.pg }}" == "13.1" ]]; then
|
||||||
|
make -k -C build isolationcheck isolationcheck-t ${{ matrix.installcheck_args }} | tee installcheck.log
|
||||||
|
else
|
||||||
make -k -C build installcheck ${{ matrix.installcheck_args }} | tee installcheck.log
|
make -k -C build installcheck ${{ matrix.installcheck_args }} | tee installcheck.log
|
||||||
|
fi
|
||||||
|
|
||||||
- name: pginstallcheck
|
- name: pginstallcheck
|
||||||
if: matrix.pg != '13.1'
|
if: matrix.pg != '13.1'
|
||||||
run: make -C build pginstallcheck
|
run: make -C build pginstallcheck
|
||||||
|
|
||||||
- name: coverage
|
- name: coverage
|
||||||
if: matrix.coverage && matrix.pg != '13.1'
|
if: matrix.coverage
|
||||||
run: make -j $MAKE_JOBS -k -C build coverage
|
run: make -j $MAKE_JOBS -k -C build coverage
|
||||||
|
|
||||||
- name: Upload coverage report
|
- name: Upload coverage report
|
||||||
if: matrix.coverage && matrix.pg != '13.1'
|
if: matrix.coverage
|
||||||
uses: codecov/codecov-action@v1
|
uses: codecov/codecov-action@v1
|
||||||
with:
|
with:
|
||||||
file: ./build/codecov/timescaledb-codecov.info
|
file: ./build/codecov/timescaledb-codecov.info
|
||||||
|
Loading…
x
Reference in New Issue
Block a user