We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 786c9d4 commit 7645c37Copy full SHA for 7645c37
1 file changed
.github/workflows/ci.yml
@@ -52,11 +52,10 @@ jobs:
52
- name: 'Start PostgreSQL'
53
run: |
54
export PGVER=${{ matrix.ci.PGVER }}
55
- export PGDATA=/var/lib/postgresql/${{ matrix.ci.PGVER }}/main
56
- export PGETC=/etc/postgresql/${{ matrix.ci.PGVER }}/main
57
- export PGBIN=/usr/lib/postgresql/${{ matrix.ci.PGVER }}/bin
58
- export PGRUNNER=`whoami`
59
- sudo chmod -R 755 /home/${PGRUNNER}
+ export PGDATA=/var/lib/postgresql/$PGVER/main
+ export PGETC=/etc/postgresql/$PGVER/main
+ export PGBIN=/usr/lib/postgresql/$PGVER/bin
+ sudo chmod -R 755 /home/`whoami`
60
sudo cp ./ci/pg_hba.conf $PGETC/pg_hba.conf
61
sudo systemctl stop postgresql
62
sudo pg_ctlcluster $PGVER main start
0 commit comments