Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ jobs:
os: macos-latest
arch: arm64
deployment-target: '11.0'
extensions: pgvector pgvectorscale pgtextsearch pg_duckdb
extensions: pgvector pgtextsearch pg_duckdb
- runner: ubuntu-latest
os: ubuntu-latest
arch: x86_64
deployment-target: ''
extensions: pgvector pgvectorscale pgtextsearch pg_duckdb
extensions: pgvector pgtextsearch pg_duckdb
- runner: ubuntu-24.04-arm
os: ubuntu-latest
arch: aarch64
deployment-target: ''
extensions: pgvector pgvectorscale pgtextsearch pg_duckdb
extensions: pgvector pgtextsearch pg_duckdb
- runner: windows-2022
os: windows-2022
arch: AMD64
Expand Down
4 changes: 2 additions & 2 deletions pgbuild/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ pg_duckdb: postgres $(INSTALL_PREFIX)/lib/pg_duckdb.so

### postgres
POSTGRES_VERSION := 17-stable
POSTGRES_SRC := REL_17_STABLE
POSTGRES_SRC := patches17
POSTGRES_BLD := $(POSTGRES_SRC)


## extract
$(POSTGRES_SRC)/configure:
git clone https://github.com/postgres/postgres -b $(POSTGRES_SRC) --single-branch $(POSTGRES_SRC)
git clone https://github.com/orioledb/postgres/ -b $(POSTGRES_SRC) --single-branch $(POSTGRES_SRC)
touch $(POSTGRES_SRC)/configure

## configure
Expand Down
Loading