Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 615df87

Browse files
committed
try-6 to fix travis build
1 parent 981c687 commit 615df87

File tree

3 files changed

+15
-20
lines changed

3 files changed

+15
-20
lines changed

.travis.yml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,26 @@ install:
1212
- docker-compose build
1313

1414
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
1716

1817
notifications:
1918
email:
2019
on_success: change
21-
on_failure: change
20+
on_failure: always
2221

2322
env:
24-
# - PG_VERSION=13 LEVEL=hardcore
23+
- PG_VERSION=13 LEVEL=hardcore
2524
- 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
3635

3736
jobs:
3837
allow_failures:

mk_dockerfile.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if [ -z ${PG_VERSION+x} ]; then
44
fi
55

66
if [ -z ${LEVEL+x} ]; then
7-
LEVEL=standard
7+
LEVEL=scan-build
88
fi
99

1010
echo PG_VERSION=${PG_VERSION}

run_tests.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ if [ "$LEVEL" = "scan-build" ] || \
7878
[ "$LEVEL" = "nightmare" ]; then
7979

8080
# perform static analyzis
81-
scan-build --status-bugs make --trace USE_PGXS=1 || status=$?
81+
scan-build --status-bugs make USE_PGXS=1 || status=$?
8282

8383
# something's wrong, exit now!
8484
if [ $status -ne 0 ]; then exit 1; fi
@@ -87,10 +87,6 @@ if [ "$LEVEL" = "scan-build" ] || \
8787
make USE_PGXS=1 clean
8888
fi
8989

90-
id
91-
ls -l $(which make pg_config) /bin/sh
92-
make --version
93-
ls -la `pwd`
9490

9591
# build and install extension (using PG_CPPFLAGS and SHLIB_LINK for gcov)
9692
make USE_PGXS=1 PG_CPPFLAGS="-coverage" SHLIB_LINK="-coverage"

0 commit comments

Comments
 (0)