Skip to content

Commit

Permalink
Port 5433
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Apr 12, 2024
1 parent e54c60d commit a4c2e57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .ci/apt-install-postgres
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}

0 comments on commit a4c2e57

Please sign in to comment.