Skip to content

Commit

Permalink
Add Postgres 16 support (#7)
Browse files Browse the repository at this point in the history
Upgrade supabase-wrappers to 0.1.18 (as imported from GitHub) and pgrx
to 0.11.2 (the version that supabase-wrappers depends on) and add a
config for Postgres 16. Update lib.js to fix all errors and warnings,
following the precedent of tembo-io/clerk_fdw#31. Also run `cargo
update` and let it update other stuff.
  • Loading branch information
theory authored Jun 25, 2024
1 parent b7215fd commit d93ee24
Show file tree
Hide file tree
Showing 5 changed files with 461 additions and 337 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/extension_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
# name: Run tests
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v4
# - name: Install Rust stable toolchain
# uses: actions-rs/toolchain@v1
# with:
Expand Down Expand Up @@ -81,8 +81,11 @@ jobs:
if: github.event_name == 'release'
name: trunk publish
runs-on: ubuntu-22.04
strategy:
matrix:
pg: [14, 15, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -103,7 +106,7 @@ jobs:
cargo install pg-trunk
- name: trunk build
working-directory: ./
run: trunk build --pg-version 15
run: trunk build --pg-version ${{ matrix.pg }}
- name: trunk publish
working-directory: ./
env:
Expand Down
Loading

0 comments on commit d93ee24

Please sign in to comment.