Fail CI on warnings #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run PGRX tests | |
on: [push, pull_request, workflow_dispatch] | |
permissions: | |
contents: read | |
jobs: | |
tester: | |
runs-on: ${{ matrix.platform.runs_on }} | |
strategy: | |
fail-fast: false | |
matrix: | |
pgvector: | |
- version: 0.7.4 | |
pg: | |
- major: 13 | |
minor: 16 | |
- major: 14 | |
minor: 13 | |
- major: 15 | |
minor: 7 | |
- major: 16 | |
minor: 3 | |
- major: 17 | |
minor: 0 | |
platform: | |
- type: amd64 | |
runs_on: ubuntu-latest | |
rustflags: '-C target-feature=+avx2,+fma' | |
- type: arm64 | |
runs_on: cloud-image-runner-arm64 | |
rustflags: '' | |
env: | |
PG_SRC_DIR: pgbuild | |
PG_INSTALL_DIR: postgresql | |
MAKE_JOBS: 6 | |
PG_CONFIG_PATH: postgresql/bin/pg_config | |
TAG: ${{ github.event.inputs.tag }} | |
TAG_DIR: pgvectorscale | |
TAG_GIT_REF: ${{ github.event.inputs.TAG_GIT_REF == '' && github.event.inputs.tag || github.event.inputs.TAG_GIT_REF}} | |
steps: | |
- name: Checkout pgvectorscale | |
uses: actions/checkout@v4 | |
- name: Install Linux Packages | |
uses: ./.github/actions/install-packages | |
- name: Install PostgreSQL ${{ matrix.pg.major }} | |
uses: ./.github/actions/install-postgres | |
with: | |
pg-version: ${{ matrix.pg.major }}.${{ matrix.pg.minor }} | |
pg-src-dir: ~/${{ env.PG_SRC_DIR }} | |
pg-install-dir: ~/${{ env.PG_INSTALL_DIR }} | |
- name: Install pgvector ${{ matrix.pgvector.version }} | |
uses: ./.github/actions/install-pgvector | |
with: | |
pgvector-version: ${{ matrix.pgvector.version }} | |
pg-install-dir: ~/${{ env.PG_INSTALL_DIR }} | |
- name: Install pgrx | |
uses: ./.github/actions/install-pgrx | |
with: | |
pg-install-dir: ~/${{ env.PG_INSTALL_DIR }} | |
pgrx-version: 0.12.5 | |
- name: Run tests | |
id: runtests | |
run: | | |
cd pgvectorscale | |
${{ matrix.platform.rustflags != '' && format('export RUSTFLAGS="{0} -D warnings"', matrix.platform.rustflags) || '' }} | |
cargo pgrx test -- pg${{ matrix.pg.major }} |