File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,13 @@ notifications:
2121 on_failure : always
2222
2323env :
24- - PG_VERSION=11 LEVEL=hardcore
24+ - PG_VERSION=14
25+ - PG_VERSION=14 LEVEL=hardcore
26+ - PG_VERSION=13
27+ - PG_VERSION=13 LEVEL=hardcore
28+ - PG_VERSION=12
29+ - PG_VERSION=12 LEVEL=hardcore
2530 - PG_VERSION=11
31+ - PG_VERSION=11 LEVEL=hardcore
2632 - PG_VERSION=10
27- - PG_VERSION=9.6
33+ - PG_VERSION=10 LEVEL=hardcore
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ FROM postgres:${PG_VERSION}-alpine
22
33# Install dependencies
44RUN apk add --no-cache \
5+ linux-headers \
56 openssl curl \
67 perl perl-ipc-run \
78 make musl-dev gcc bison flex coreutils \
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ if [ "$LEVEL" = "hardcore" ]; then
3636
3737 # enable additional options
3838 ./configure \
39- CFLAGS=' -O0 -ggdb3 - fno-omit-frame-pointer' \
39+ CFLAGS=' -fno-omit-frame-pointer' \
4040 --enable-cassert \
4141 --prefix=$CUSTOM_PG_BIN \
4242 --quiet
@@ -62,7 +62,10 @@ pg_config
6262if [ " $LEVEL " = " hardcore" ]; then
6363
6464 # perform static analyzis
65- scan-build --status-bugs make USE_PGXS=1 || status=$?
65+ scan-build --status-bugs \
66+ -disable-checker core.UndefinedBinaryOperatorResult \
67+ -disable-checker deadcode.DeadStores \
68+ make USE_PGXS=1 || status=$?
6669
6770 # something's wrong, exit now!
6871 if [ $status -ne 0 ]; then exit 1; fi
You can’t perform that action at this time.
0 commit comments