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.
2 parents 08d1e1c + d0c4db2 commit 797ceaaCopy full SHA for 797ceaa
.github/workflows/ci.yml
@@ -16,7 +16,12 @@ jobs:
16
run: |
17
brew install lua boost postgis pandoc
18
pip3 install psycopg2 behave
19
+ pg_ctl -D /usr/local/var/postgres init
20
pg_ctl -D /usr/local/var/postgres start
21
+ # Work around homebrew postgresql installation screw-up, see
22
+ # https://github.com/actions/runner-images/issues/6176
23
+ ln -s $(pg_config --libdir)/* /usr/local/lib/ || true
24
+ ln -s $(pg_config --includedir)/* /usr/local/include/
25
shell: bash
26
27
- name: Setup database
0 commit comments