From a4c2e5721ad3383b6814ff5cf1bf7001c9924b25 Mon Sep 17 00:00:00 2001 From: "David E. Wheeler" Date: Fri, 12 Apr 2024 18:57:46 -0400 Subject: [PATCH] Port 5433 --- .ci/apt-install-postgres | 6 +----- .github/workflows/lint-and-test.yml | 4 ++-- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.ci/apt-install-postgres b/.ci/apt-install-postgres index c996740..1f3032f 100755 --- a/.ci/apt-install-postgres +++ b/.ci/apt-install-postgres @@ -24,8 +24,4 @@ chmod +x /usr/local/bin/apt.postgresql.org.sh apt.postgresql.org.sh -i -v "$PGVERSION" chmod a+rwx "$(pg_config --pkglibdir)" "$(pg_config --sharedir)/extension" -pg_createcluster --start "$PGVERSION" test -p "${PGPORT:-5432}" -- -A trust || true - -systemctl status "postgresql@$PGVERSION-test.service" - -journalctl -xeu "postgresql@$PGVERSION-test.service" +pg_createcluster --start "$PGVERSION" test -p "${PGPORT:-5433}" -- -A trust || true diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index e00d17f..3ea2e54 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - pg: [16] + pg: [11, 12, 13, 14, 15, 16] os: [[🐧, Ubuntu]] # [🍎, macOS], [🪟, Windows]] name: 🐘 Postgres ${{ matrix.pg }} on ${{ matrix.os[0] }} ${{ matrix.os[1] }} steps: @@ -63,6 +63,6 @@ jobs: - name: Install run: make install - name: Run Install Check - run: make installcheck PGUSER=postgres + run: make installcheck PGUSER=postgres PGPORT=5433 - name: Remove Data Diretory run: rm -rf target/pgrx-test-data-${{ matrix.pg }}