We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2891d76 commit bfa9dd0Copy full SHA for bfa9dd0
1 file changed
.github/workflows/flow.yml
@@ -125,11 +125,16 @@ jobs:
125
go-version: '1.26.2'
126
cache-dependency-path: flow/go.sum
127
128
- - name: install lib-geos
+ - name: install lib-geos and pg_dump
129
run: |
130
# No need to update man pages on package install
131
sudo apt-get remove --purge man-db
132
- sudo apt-get install libgeos-dev
+ sudo apt-get update
133
+ sudo apt-get install -y libgeos-dev
134
+ # pg_dump must be >= the server major version; install v18 so it
135
+ # can dump PG 16, 17, and 18 (backward compatible).
136
+ sudo apt-get install -y postgresql-client-18
137
+ echo /usr/lib/postgresql/18/bin >> $GITHUB_PATH
138
139
- name: install retry tool
140
0 commit comments