File tree 3 files changed +5
-27
lines changed
3 files changed +5
-27
lines changed Original file line number Diff line number Diff line change 5
5
- .github/workflows/step-mac.yml
6
6
jobs :
7
7
mac :
8
- runs-on : ${{ matrix.os }}
9
- strategy :
10
- fail-fast : false
11
- matrix :
12
- os : [macos-15, macos-14, macos-13]
8
+ runs-on : macos-14
13
9
steps :
14
10
- run : brew install postgresql@17
15
11
- run : brew link --overwrite postgresql@17
Original file line number Diff line number Diff line change 5
5
- .github/workflows/step-ubuntu.yml
6
6
jobs :
7
7
ubuntu :
8
- runs-on : ${{ matrix.os }}
9
- strategy :
10
- fail-fast : false
11
- matrix :
12
- include :
13
- - os : ubuntu-24.04
14
- postgres : 16
15
- - os : ubuntu-22.04
16
- postgres : 14
17
- - os : ubuntu-20.04
18
- postgres : 14
8
+ runs-on : ubuntu-24.04
19
9
steps :
20
10
- name : Install pgvector
21
11
run : |
22
12
sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y
23
- sudo apt-get install postgresql-${{ matrix.postgres }} -pgvector
13
+ sudo apt-get install postgresql-16 -pgvector
24
14
- run : sudo systemctl start postgresql
25
15
- run : sudo -u postgres psql -c 'CREATE EXTENSION vector'
Original file line number Diff line number Diff line change 5
5
- .github/workflows/step-windows.yml
6
6
jobs :
7
7
windows :
8
- runs-on : ${{ matrix.os }}
9
- strategy :
10
- fail-fast : false
11
- matrix :
12
- include :
13
- - os : windows-2022
14
- vs : C:\Program Files\Microsoft Visual Studio\2022\Enterprise
15
- - os : windows-2019
16
- vs : C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise
8
+ runs-on : windows-2022
17
9
steps :
18
10
- name : Install pgvector
19
11
run : |
20
- call "${{ matrix.vs }} \VC\Auxiliary\Build\vcvars64.bat"
12
+ call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise \VC\Auxiliary\Build\vcvars64.bat"
21
13
cd %TEMP%
22
14
git clone --branch v0.7.4 https://github.com/pgvector/pgvector.git
23
15
cd pgvector
You can’t perform that action at this time.
0 commit comments