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 74797e6 commit 2f317edCopy full SHA for 2f317ed
1 file changed
.github/workflows/build.yml
@@ -9,6 +9,8 @@ jobs:
9
runs-on: ${{ matrix.os }}
10
steps:
11
- uses: actions/checkout@v7
12
+ - if: ${{ runner.os == 'macOS' }}
13
+ run: brew update
14
- uses: ankane/setup-postgres@v1
15
with:
16
database: pgvector_cpp_test
@@ -20,7 +22,7 @@ jobs:
20
22
make
21
23
sudo make install
24
- - run: cmake -S . -B build -DBUILD_TESTING=ON -DCMAKE_CXX_STANDARD=20 ${{ runner.os == 'macOS' && '-DPostgreSQL_ROOT=/opt/homebrew/opt/postgresql@18' || '' }}
25
+ - run: cmake -S . -B build -DBUILD_TESTING=ON -DCMAKE_CXX_STANDARD=20
26
- run: cmake --build build
27
- run: build/test
28
0 commit comments