-
Notifications
You must be signed in to change notification settings - Fork 5
33 lines (33 loc) · 965 Bytes
/
build.yml
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
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [21, 17, 11, 8]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: maven
- uses: ankane/setup-postgres@v1
with:
database: pgvector_java_test
dev-files: true
- run: |
cd /tmp
git clone --branch v0.6.0 https://github.com/pgvector/pgvector.git
cd pgvector
make
sudo make install
- run: psql -d pgvector_java_test -c "CREATE EXTENSION vector"
# Hibernate 6.4 and HttpClient require Java 11+
- if: ${{ matrix.java == 8 }}
run: |
rm src/test/java/com/pgvector/HibernateTest.java
rm src/test/java/com/pgvector/OpenAITest.java
- run: mvn -B -ntp test