Issue #420: Acquire SHARE UPDATE EXCLUSIVE by conn2 (#452) #267
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: make installcheck | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
pg: | |
- 18 | |
- 17 | |
- 16 | |
- 15 | |
- 14 | |
- 13 | |
- 12 | |
- 11 | |
- 10 | |
- 9.6 | |
- 9.5 | |
name: PostgreSQL ${{ matrix.pg }} | |
runs-on: ubuntu-latest | |
container: pgxn/pgxn-tools | |
steps: | |
- name: Start PostgreSQL ${{ matrix.pg }} | |
run: pg-start ${{ matrix.pg }} | |
- name: Install build-dependencies | |
run: apt-get install -y liblz4-dev libreadline-dev zlib1g-dev libzstd-dev | |
- name: Install additional build-dependencies for 18+ | |
if: ${{ matrix.pg >= 18 }} | |
run: apt-get install -y libcurl4-openssl-dev | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: Put pg_repack on PATH | |
run: echo "$PWD/bin" >> $GITHUB_PATH | |
- name: Create tablespaces | |
run: bash regress/create_tablespaces.sh | |
- name: Test on PostgreSQL ${{ matrix.pg }} | |
run: pg-build-test | |
- name: Show regression.diffs | |
if: ${{ failure() }} | |
run: cat regress/regression.diffs |