Skip to content

Commit 9e617a5

Browse files
committed
fix(ci): try to fix the macOS build (missing libpq), take 2…
1 parent e8afe6e commit 9e617a5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ jobs:
6161
run: |
6262
brew install libpq
6363
brew link --force libpq
64+
echo "LIBRARY_PATH=$(brew --prefix libpq)/lib:$LIBRARY_PATH" >> "$GITHUB_ENV"
65+
echo "CPATH=$(brew --prefix libpq)/include:$CPATH" >> "$GITHUB_ENV"
66+
echo "PKG_CONFIG_PATH=$(brew --prefix libpq)/lib/pkgconfig:$PKG_CONFIG_PATH" >> "$GITHUB_ENV"
6467
6568
- name: Fast check
6669
run: cargo check --workspace --all-targets --verbose

0 commit comments

Comments
 (0)