Skip to content

Commit 51891fa

Browse files
committed
add pg 17
1 parent 0e52a1c commit 51891fa

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/postgres.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
packages: write
2727
strategy:
2828
matrix:
29-
version: [12, 13, 14, 15, 16]
29+
version: [12, 13, 14, 15, 16, 17]
3030
extension: [non-durable, non-durable-anon]
3131
fail-fast: "${{ github.ref != 'refs/heads/master' }}"
3232
steps:

postgres/Dockerfile.non-durable-anon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG POSTGRES_VERSION
33
FROM postgres:${POSTGRES_VERSION}-alpine as builder
44

55
RUN apk add make curl gcc libc-dev clang15 llvm15
6-
RUN curl https://gitlab.com/dalibo/postgresql_anonymizer/-/archive/1.3.1/postgresql_anonymizer-1.3.1.tar.gz -o anon.tar.gz && \
6+
RUN curl https://gitlab.com/dalibo/postgresql_anonymizer/-/archive/1.3.2/postgresql_anonymizer-1.3.2.tar.gz -o anon.tar.gz && \
77
mkdir anon && \
88
tar zxvf anon.tar.gz -C anon --strip-components 1
99
RUN cd anon && make && make install

postgres/non-durable-settings.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ cat <<EOF >> /var/lib/postgresql/data/postgresql.conf
44
fsync = off
55
synchronous_commit = off
66
full_page_writes = off
7+
wal_level = minimal
78
EOF

0 commit comments

Comments
 (0)