We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a1380d commit e2a6b47Copy full SHA for e2a6b47
.github/workflows/build.yml
@@ -295,7 +295,7 @@ jobs:
295
--prefix "$INSTALL_DIRECTORY" \
296
--enable-integer-datetimes \
297
--enable-option-checking=fatal \
298
- --enable-thread-safety \
+ $([ $major_version -le 16 ] && echo "--enable-thread-safety") \
299
--without-icu \
300
--without-ldap \
301
--with-libxml \
dockerfiles/Dockerfile.linux-gnu
@@ -55,7 +55,7 @@ RUN major_version=$(echo "$POSTGRESQL_VERSION" | awk -F. '{print $1}') && \
55
--prefix /opt/postgresql \
56
57
58
59
--with-gssapi \
60
61
0 commit comments