mirror of
https://github.com/pgvector/pgvector.git
synced 2026-06-06 14:01:31 +08:00
39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
name: build
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
postgres: [14, 13, 12, 11, 10, 9.6]
|
|
include:
|
|
- os: macos-latest
|
|
postgres: 14
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ankane/setup-postgres@v1
|
|
with:
|
|
postgres-version: ${{ matrix.postgres }}
|
|
- if: ${{ startsWith(matrix.os, 'ubuntu') }}
|
|
run: sudo apt-get update && sudo apt-get install postgresql-server-dev-${{ matrix.postgres }} libipc-run-perl
|
|
- run: make
|
|
- if: ${{ startsWith(matrix.os, 'ubuntu') }}
|
|
run: |
|
|
export PG_CONFIG=`which pg_config`
|
|
sudo --preserve-env=PG_CONFIG make install
|
|
- if: ${{ startsWith(matrix.os, 'macos') }}
|
|
run: make install
|
|
- run: make installcheck
|
|
- if: ${{ failure() }}
|
|
run: cat regression.diffs
|
|
- if: ${{ startsWith(matrix.os, 'ubuntu') }}
|
|
run: make prove_installcheck
|
|
- if: ${{ startsWith(matrix.os, 'macos') }}
|
|
run: |
|
|
brew install cpanm && cpanm IPC::Run
|
|
wget -q https://github.com/postgres/postgres/archive/refs/tags/REL_14_1.tar.gz
|
|
tar xf REL_14_1.tar.gz
|
|
make prove_installcheck PROVE=prove PERL5LIB=postgres-REL_14_1/src/test/perl
|