Skip to content

Commit a156ee4

Browse files
committed
parameters ...
1 parent 43b0805 commit a156ee4

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.github/workflows/arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
#
20-
platforms: ['linux/arm64','linux/arm/v7','linux/arm/v5','linux/386','linux/ppc64le']
20+
platforms: ['linux/arm64','linux/arm/v7','linux/arm/v6','linux/386','linux/ppc64le']
2121
#
2222
#platforms: ['linux/arm64','linux/arm/v7','linux/arm/v5','linux/386','linux/mips64le','linux/ppc64le','linux/s390x']
2323
# comments:

14-3.2/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ FROM postgres:14-bullseye
22

33
RUN uname -a
44
RUN uname -m
5+
RUN lscpu
56
RUN cat /proc/cpuinfo
67

78
LABEL maintainer="PostGIS Project - https://postgis.net"

14-3.2/alpine/Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ FROM --platform= postgres:14-alpine3.16
22

33
RUN uname -a
44
RUN uname -m
5+
RUN lscpu
56
RUN cat /proc/cpuinfo
67

78
LABEL maintainer="PostGIS Project - https://postgis.net"
@@ -98,7 +99,13 @@ RUN set -eux \
9899
&& mkdir /tempdb \
99100
&& chown -R postgres:postgres /tempdb \
100101
&& su postgres -c 'pg_ctl -D /tempdb init' \
101-
&& su postgres -c 'pg_ctl -D /tempdb start' \
102+
&& su postgres -c 'pg_ctl -o "--fsync=off" -o "--huge_pages=off" -o "--jit=off" -o "--synchronous_commit=off" -D /tempdb start' \
103+
&& cd regress \
104+
&& su postgres -c 'psql -c "SHOW JIT;"' \
105+
&& su postgres -c 'psql -c "SHOW FSYNC;"' \
106+
&& su postgres -c 'psql -c "SHOW SYNCHRONOUS_COMMIT;"' \
107+
&& su postgres -c 'psql -c "SHOW HUGE_PAGES;"' \
108+
\
102109
&& cd regress \
103110
&& make -j$(nproc) check RUNTESTFLAGS=--extension PGUSER=postgres \
104111
#&& make -j$(nproc) check RUNTESTFLAGS=--dumprestore PGUSER=postgres \

15beta3-3.3.0rc2/alpine/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ FROM postgres:15beta3-alpine3.16
22

33
RUN uname -a
44
RUN uname -m
5+
RUN lscpu
56
RUN cat /proc/cpuinfo
67

78
LABEL maintainer="PostGIS Project - https://postgis.net"

0 commit comments

Comments
 (0)