Skip to content

Commit ff0b047

Browse files
authored
chore: temporarily remove pgadudit (#67)
pgaudit doesn't build anymore against the latest master of PG, see pgaudit/pgaudit#257 for more info. Disabling it from the trunk image until it is compatible again. Signed-off-by: Niccolò Fei <[email protected]>
1 parent 7064602 commit ff0b047

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

Dockerfile

+8-7
Original file line numberDiff line numberDiff line change
@@ -158,15 +158,16 @@ RUN set -eux ; \
158158
rm -rf /usr/src/postgresql ; \
159159
postgres --version
160160

161+
# TODO: re-enable once https://github.com/pgaudit/pgaudit/issues/257 is fixed
161162
# Build PgAudit
162163
# See to https://github.com/pgaudit/pgaudit/blob/master/README.md#compile-and-install
163-
RUN set -eux ; \
164-
mkdir -p /usr/src/pgaudit ; \
165-
git clone -b main --single-branch https://github.com/pgaudit/pgaudit.git /usr/src/pgaudit ; \
166-
cd /usr/src/pgaudit ; \
167-
make install USE_PGXS=1 PG_CONFIG=/usr/lib/postgresql/$PG_MAJOR/bin/pg_config ; \
168-
cd / ; \
169-
rm -rf /usr/src/pgaudit
164+
# RUN set -eux ; \
165+
# mkdir -p /usr/src/pgaudit ; \
166+
# git clone -b main --single-branch https://github.com/pgaudit/pgaudit.git /usr/src/pgaudit ; \
167+
# cd /usr/src/pgaudit ; \
168+
# make install USE_PGXS=1 PG_CONFIG=/usr/lib/postgresql/$PG_MAJOR/bin/pg_config ; \
169+
# cd / ; \
170+
# rm -rf /usr/src/pgaudit
170171

171172
# Purge build dependencies
172173
RUN set -xe ; \

0 commit comments

Comments
 (0)