File tree 3 files changed +15
-20
lines changed 3 files changed +15
-20
lines changed Original file line number Diff line number Diff line change @@ -12,27 +12,26 @@ install:
12
12
- docker-compose build
13
13
14
14
script :
15
- - docker-compose run tests
16
- # - docker-compose run $(bash <(curl -s https://codecov.io/env)) tests
15
+ - docker-compose run $(bash <(curl -s https://codecov.io/env)) tests
17
16
18
17
notifications :
19
18
email :
20
19
on_success : change
21
- on_failure : change
20
+ on_failure : always
22
21
23
22
env :
24
- # - PG_VERSION=13 LEVEL=hardcore
23
+ - PG_VERSION=13 LEVEL=hardcore
25
24
- PG_VERSION=13
26
- # - PG_VERSION=12 LEVEL=hardcore
27
- # - PG_VERSION=12
28
- # - PG_VERSION=11 LEVEL=hardcore
29
- # - PG_VERSION=11
30
- # - PG_VERSION=10 LEVEL=hardcore
31
- # - PG_VERSION=10
32
- # - PG_VERSION=9.6 LEVEL=hardcore
33
- # - PG_VERSION=9.6
34
- # - PG_VERSION=9.5 LEVEL=hardcore
35
- # - PG_VERSION=9.5
25
+ - PG_VERSION=12 LEVEL=hardcore
26
+ - PG_VERSION=12
27
+ - PG_VERSION=11 LEVEL=hardcore
28
+ - PG_VERSION=11
29
+ - PG_VERSION=10 LEVEL=hardcore
30
+ - PG_VERSION=10
31
+ - PG_VERSION=9.6 LEVEL=hardcore
32
+ - PG_VERSION=9.6
33
+ - PG_VERSION=9.5 LEVEL=hardcore
34
+ - PG_VERSION=9.5
36
35
37
36
jobs :
38
37
allow_failures :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ if [ -z ${PG_VERSION+x} ]; then
4
4
fi
5
5
6
6
if [ -z ${LEVEL+x} ]; then
7
- LEVEL=standard
7
+ LEVEL=scan-build
8
8
fi
9
9
10
10
echo PG_VERSION=${PG_VERSION}
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ if [ "$LEVEL" = "scan-build" ] || \
78
78
[ " $LEVEL " = " nightmare" ]; then
79
79
80
80
# perform static analyzis
81
- scan-build --status-bugs make --trace USE_PGXS=1 || status=$?
81
+ scan-build --status-bugs make USE_PGXS=1 || status=$?
82
82
83
83
# something's wrong, exit now!
84
84
if [ $status -ne 0 ]; then exit 1; fi
@@ -87,10 +87,6 @@ if [ "$LEVEL" = "scan-build" ] || \
87
87
make USE_PGXS=1 clean
88
88
fi
89
89
90
- id
91
- ls -l $( which make pg_config) /bin/sh
92
- make --version
93
- ls -la ` pwd`
94
90
95
91
# build and install extension (using PG_CPPFLAGS and SHLIB_LINK for gcov)
96
92
make USE_PGXS=1 PG_CPPFLAGS=" -coverage" SHLIB_LINK=" -coverage"
You can’t perform that action at this time.
0 commit comments