mirror of
https://github.com/pgvector/pgvector.git
synced 2026-06-06 05:51:21 +08:00
16 lines
516 B
YAML
16 lines
516 B
YAML
name: build
|
|
on: [push, pull_request]
|
|
jobs:
|
|
valgrind:
|
|
if: ${{ !startsWith(github.ref_name, 'mac') && !startsWith(github.ref_name, 'windows') }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ankane/setup-postgres-valgrind@v1
|
|
with:
|
|
postgres-version: 16
|
|
check-ub: yes
|
|
- run: make OPTFLAGS=""
|
|
- run: sudo --preserve-env=PG_CONFIG make install
|
|
- run: make prove_installcheck PROVE_TESTS=test/t/031_hnsw_sparsevec_vacuum_recall.pl
|