Skip to content

Commit 0b6f5f8

Browse files
committed
try to fix postgres install on ubuntu 20.04 for Python 3.6.
force update of apt inventory. Looks like postgresql 14 is supposed to be installed, but apt install is trying v12.
1 parent a2c2b5d commit 0b6f5f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
131131
- name: Install postgres
132132
run: |
133-
sudo apt-get install postgresql
133+
sudo apt-get update && sudo apt-get install postgresql
134134
# Disable fsync for speed, don't care about data durability
135135
# when testing
136136
sudo sed -i -e '$a\fsync = off' /etc/postgresql/*/*/postgresql.conf

0 commit comments

Comments
 (0)