We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6dda87 commit e9f5eb4Copy full SHA for e9f5eb4
1 file changed
.github/workflows/build.yml
@@ -5,20 +5,21 @@ jobs:
5
strategy:
6
fail-fast: false
7
matrix:
8
- os: [ubuntu-latest, macos-latest]
+ os: [windows-latest]
9
runs-on: ${{ matrix.os }}
10
steps:
11
- uses: actions/checkout@v6
12
- uses: ankane/setup-postgres@v1
13
with:
14
database: pgvector_cpp_test
15
dev-files: true
16
- - run: |
17
- cd /tmp
+ run: |
+ call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
18
+ cd %TEMP%
19
git clone --branch v0.8.2 https://github.com/pgvector/pgvector.git
20
cd pgvector
- make
21
- sudo make install
+ nmake /NOLOGO /F Makefile.win
22
+ nmake /NOLOGO /F Makefile.win install
23
24
- run: cmake -S . -B build -DBUILD_TESTING=ON -DCMAKE_CXX_STANDARD=20
25
- run: cmake --build build
0 commit comments