Skip to content

Commit 93a2e98

Browse files
committed
Install PostgreSQL client libraries on macOS
1 parent c078f61 commit 93a2e98

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/actions/ci/action.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ runs:
6161
sudo rm -rf /usr/share/swift
6262
shell: bash
6363

64+
- name: Install PostgreSQL client libraries on macOS
65+
if: ${{ runner.os == 'macOS' }}
66+
run: |
67+
brew install libpq
68+
echo "LIBRARY_PATH=$(brew --prefix libpq)/lib:$LIBRARY_PATH" >> "$GITHUB_ENV"
69+
shell: bash
70+
6471
- name: Disable incremental compilation on Windows
6572
if: ${{ runner.os == 'Windows' }}
6673
run: echo 'CARGO_INCREMENTAL=0' >> "$GITHUB_ENV"

0 commit comments

Comments
 (0)