Skip to content

Commit

Permalink
Add zson (#289)
Browse files Browse the repository at this point in the history
Co-authored-by: Evan Stanton <evanstanton@Evans-MBP.fritz.box>
Co-authored-by: Ian Stanton <ian@coredb.io>
  • Loading branch information
3 people authored Jul 26, 2023
1 parent 59ad18c commit 5e16656
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
15 changes: 15 additions & 0 deletions contrib/zson/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Set PostgreSQL version
ARG PG_VERSION=15
FROM quay.io/coredb/c-builder:pg${PG_VERSION}

# Clone repository
RUN git clone https://github.com/postgrespro/zson.git

# Set project version
ARG RELEASE=v1.1

# Build extension
RUN cd zson && \
git fetch origin ${RELEASE} && \
git checkout ${RELEASE} && \
make
19 changes: 19 additions & 0 deletions contrib/zson/Trunk.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[extension]
name = "zson"
version = "1.1.0"
repository = "https://github.com/postgrespro/zson"
license = "MIT"
description = "ZSON is a PostgreSQL extension for transparent JSONB compression."
documentation = "https://github.com/postgrespro/zson"
categories = ["data_transformations"]

[build]
postgres_version = "15"
platform = "linux/amd64"
dockerfile = "Dockerfile"
install_command = """
cd zson && make install
set -x
mv /usr/local/pgsql/share/extension/* /usr/share/postgresql/15/extension
mv /usr/local/pgsql/lib/* /usr/lib/postgresql/15/lib
"""

0 comments on commit 5e16656

Please sign in to comment.