-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (37 loc) · 996 Bytes
/
build.yml
File metadata and controls
41 lines (37 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# - uses: ankane/setup-postgres@v1
# with:
# database: pgvector_c_test
# dev-files: true
# - run: |
# cd /tmp
# git clone --branch v0.8.0 https://github.com/pgvector/pgvector.git
# cd pgvector
# make
# sudo make install
# - run: cmake -S . -B build
# - run: cmake --build build
# - run: build/test
- run: |
sudo apt-get update
sudo apt-get install libcjson-dev
- run: |
cd examples/openai
cmake -S . -B build
cmake --build build
- run: |
cd examples/cohere
cmake -S . -B build
cmake --build build
- run: |
cd examples/loading
cmake -S . -B build
cmake --build build
# createdb pgvector_example
# build/example