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 0732a23 commit b9121e8Copy full SHA for b9121e8
.github/workflows/app-tests.yaml
@@ -23,6 +23,9 @@ jobs:
23
- name: Check for MacOS Runner
24
if: matrix.os == 'macos-latest-xlarge'
25
run: brew install postgresql@14
26
+ - name: Install pgvector on Windows using install-pgvector.bat
27
+ if: matrix.os == 'windows-latest'
28
+ run: .\install-pgvector.bat
29
- name: Setup postgres
30
uses: ikalnytskyi/action-setup-postgres@v6
31
with:
.github/workflows/install-pgvector.bat
@@ -0,0 +1,8 @@
1
+set "PGROOT=C:\Program Files\PostgreSQL\14"
2
+cd $RUNNER_TEMP
3
+git clone --branch v0.6.2 https://github.com/pgvector/pgvector.git
4
+cd pgvector
5
+
6
+call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
7
+nmake /NOLOGO /F Makefile.win
8
+nmake /NOLOGO /F Makefile.win install
0 commit comments