Skip to content

Commit

Permalink
enable CI for pg13
Browse files Browse the repository at this point in the history
Signed-off-by: usamoi <usamoi@outlook.com>
  • Loading branch information
usamoi committed Feb 11, 2025
1 parent e92d6dc commit 118232a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/psql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
runs-on: ${{ matrix.runner }}
strategy:
matrix:
version: ["14", "15", "16", "17"]
version: ["13", "14", "15", "16", "17"]
runner: ["ubuntu-22.04", "ubuntu-22.04-arm"]
env:
PGRX_IMAGE: "ghcr.io/tensorchord/vectorchord-pgrx:0.12.9-nightly-2024-12-25"
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
needs: ["semver"]
strategy:
matrix:
version: ["14", "15", "16", "17"]
version: ["13", "14", "15", "16", "17"]
runner: ["ubuntu-22.04", "ubuntu-22.04-arm"]
env:
PGRX_IMAGE: "ghcr.io/tensorchord/vectorchord-pgrx:0.12.9-nightly-2024-12-25"
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
needs: ["semver", "build"]
strategy:
matrix:
version: ["14", "15", "16", "17"]
version: ["13", "14", "15", "16", "17"]
env:
SEMVER: ${{ needs.semver.outputs.SEMVER }}
steps:
Expand Down Expand Up @@ -159,8 +159,7 @@ jobs:

test:
name: Run tests
runs-on:
- ubuntu-latest
runs-on: ubuntu-latest
needs: ["semver", "build", "docker"]
strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ jobs:
- name: Clippy
run: |
for v in {14..17}; do
for v in {13..17}; do
docker run --rm -v .:/workspace $CACHE_ENVS $PGRX_IMAGE cargo clippy --target ${{ matrix.arch }}-unknown-linux-gnu --features "pg$v" -- -D warnings
done
- name: Build
run: |
for v in {14..17}; do
for v in {13..17}; do
docker run --rm -v .:/workspace $CACHE_ENVS $PGRX_IMAGE cargo build --lib --target ${{ matrix.arch }}-unknown-linux-gnu --features "pg$v"
done
- name: Test
Expand Down

0 comments on commit 118232a

Please sign in to comment.