mirror of
https://github.com/pgvector/pgvector.git
synced 2026-06-06 14:01:31 +08:00
61 lines
2.1 KiB
YAML
61 lines
2.1 KiB
YAML
name: build
|
|
on: [push, pull_request]
|
|
jobs:
|
|
ubuntu:
|
|
runs-on: ${{ matrix.os }}
|
|
if: ${{ !startsWith(github.ref_name, 'mac') && !startsWith(github.ref_name, 'windows') }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- postgres: 16
|
|
os: ubuntu-22.04
|
|
- postgres: 12
|
|
os: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ankane/setup-postgres@v1
|
|
with:
|
|
postgres-version: ${{ matrix.postgres }}
|
|
dev-files: true
|
|
- run: make
|
|
env:
|
|
PG_CFLAGS: -DUSE_ASSERT_CHECKING -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare
|
|
- run: |
|
|
export PG_CONFIG=`which pg_config`
|
|
sudo --preserve-env=PG_CONFIG make install
|
|
windows:
|
|
runs-on: windows-latest
|
|
if: ${{ !startsWith(github.ref_name, 'mac') }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ankane/setup-postgres@v1
|
|
with:
|
|
postgres-version: 14
|
|
- run: |
|
|
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat" && ^
|
|
cd %TEMP% && ^
|
|
nmake /NOLOGO /F Makefile.win && ^
|
|
nmake /NOLOGO /F Makefile.win install && ^
|
|
nmake /NOLOGO /F Makefile.win installcheck && ^
|
|
nmake /NOLOGO /F Makefile.win clean && ^
|
|
nmake /NOLOGO /F Makefile.win uninstall
|
|
shell: cmd
|
|
i386:
|
|
if: ${{ !startsWith(github.ref_name, 'mac') && !startsWith(github.ref_name, 'windows') }}
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: debian:12
|
|
options: --platform linux/386
|
|
steps:
|
|
- run: apt-get update && apt-get install -y build-essential git libipc-run-perl postgresql-15 postgresql-server-dev-15 sudo
|
|
- run: service postgresql start
|
|
- run: |
|
|
git clone https://github.com/${{ github.repository }}.git pgvector
|
|
cd pgvector
|
|
git fetch origin ${{ github.ref }}
|
|
git reset --hard FETCH_HEAD
|
|
make
|
|
env:
|
|
PG_CFLAGS: -DUSE_ASSERT_CHECKING -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare
|