File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,8 @@ 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
17
- # - docker run -v $(pwd):/tests --rm centos:7 /tests/travis/backup_restore.sh
15
+ # - docker-compose run tests
16
+ - docker-compose run $(bash <(curl -s https://codecov.io/env)) tests
18
17
19
18
notifications :
20
19
email :
@@ -24,3 +23,4 @@ notifications:
24
23
env :
25
24
- PG_VERSION=12 PG_BRANCH=REL_12_STABLE
26
25
- PG_VERSION=12 PG_BRANCH=REL_12_STABLE TEST_CASE=test_ptrack_multiple_segments TEST_REPEATS=5
26
+ - PG_VERSION=12 PG_BRANCH=REL_12_STABLE TEST_CASE=test_ptrack_uncommitted_xact TEST_REPEATS=15
Original file line number Diff line number Diff line change 55
55
56
56
# Build and install ptrack extension
57
57
echo " ############### Compiling and installing ptrack extension"
58
- make USE_PGXS=1 install
58
+ make USE_PGXS=1 PG_CPPFLAGS= " -coverage " SHLIB_LINK= " -coverage " install
59
59
60
60
# Show pg_config path (just in case)
61
61
echo " ############### pg_config path"
89
89
done
90
90
fi
91
91
92
+ # Get back to testdir
93
+ cd ..
94
+
92
95
# Generate *.gcov files
93
- # gcov src/*.c src/*.h
96
+ gcov src/* .c src/* .h
94
97
95
98
# Send coverage stats to Codecov
96
- # bash <(curl -s https://codecov.io/bash)
99
+ bash <( curl -s https://codecov.io/bash)
You can’t perform that action at this time.
0 commit comments