Skip to content

Commit 05f00d1

Browse files
committed
Drop extended postgres in regular tests
1 parent 1543500 commit 05f00d1

File tree

2 files changed

+2
-56
lines changed

2 files changed

+2
-56
lines changed

.travis.yml

Lines changed: 1 addition & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,14 @@
11

22
##########################################################################
33
## AUTO-GENERATED FILE ##
4-
## BUILD_NUMBER=Fri Jun 1 13:38:15 +07 2018 ##
4+
## BUILD_NUMBER=Sat 2 Jun 2018 13:40:46 +07 ##
55
##########################################################################
66

77
sudo: required
88
services:
99
- docker
1010
jobs:
1111
include:
12-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-9.6_pgpool-3.7_barman-2.4 ./tests/run.sh
13-
env:
14-
- COMBINATION=postgres-extended-9.6_pgpool-3.7_barman-2.4
15-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-9.6_pgpool-3.7_barman-2.3 ./tests/run.sh
16-
env:
17-
- COMBINATION=postgres-extended-9.6_pgpool-3.7_barman-2.3
18-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-9.6_pgpool-3.6_barman-2.4 ./tests/run.sh
19-
env:
20-
- COMBINATION=postgres-extended-9.6_pgpool-3.6_barman-2.4
21-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-9.6_pgpool-3.6_barman-2.3 ./tests/run.sh
22-
env:
23-
- COMBINATION=postgres-extended-9.6_pgpool-3.6_barman-2.3
24-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-9.6_pgpool-3.3_barman-2.4 ./tests/run.sh
25-
env:
26-
- COMBINATION=postgres-extended-9.6_pgpool-3.3_barman-2.4
27-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-9.6_pgpool-3.3_barman-2.3 ./tests/run.sh
28-
env:
29-
- COMBINATION=postgres-extended-9.6_pgpool-3.3_barman-2.3
30-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-9.5_pgpool-3.7_barman-2.4 ./tests/run.sh
31-
env:
32-
- COMBINATION=postgres-extended-9.5_pgpool-3.7_barman-2.4
33-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-9.5_pgpool-3.7_barman-2.3 ./tests/run.sh
34-
env:
35-
- COMBINATION=postgres-extended-9.5_pgpool-3.7_barman-2.3
36-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-9.5_pgpool-3.6_barman-2.4 ./tests/run.sh
37-
env:
38-
- COMBINATION=postgres-extended-9.5_pgpool-3.6_barman-2.4
39-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-9.5_pgpool-3.6_barman-2.3 ./tests/run.sh
40-
env:
41-
- COMBINATION=postgres-extended-9.5_pgpool-3.6_barman-2.3
42-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-9.5_pgpool-3.3_barman-2.4 ./tests/run.sh
43-
env:
44-
- COMBINATION=postgres-extended-9.5_pgpool-3.3_barman-2.4
45-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-9.5_pgpool-3.3_barman-2.3 ./tests/run.sh
46-
env:
47-
- COMBINATION=postgres-extended-9.5_pgpool-3.3_barman-2.3
48-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-10_pgpool-3.7_barman-2.4 ./tests/run.sh
49-
env:
50-
- COMBINATION=postgres-extended-10_pgpool-3.7_barman-2.4
51-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-10_pgpool-3.7_barman-2.3 ./tests/run.sh
52-
env:
53-
- COMBINATION=postgres-extended-10_pgpool-3.7_barman-2.3
54-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-10_pgpool-3.6_barman-2.4 ./tests/run.sh
55-
env:
56-
- COMBINATION=postgres-extended-10_pgpool-3.6_barman-2.4
57-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-10_pgpool-3.6_barman-2.3 ./tests/run.sh
58-
env:
59-
- COMBINATION=postgres-extended-10_pgpool-3.6_barman-2.3
60-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-10_pgpool-3.3_barman-2.4 ./tests/run.sh
61-
env:
62-
- COMBINATION=postgres-extended-10_pgpool-3.3_barman-2.4
63-
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-extended-10_pgpool-3.3_barman-2.3 ./tests/run.sh
64-
env:
65-
- COMBINATION=postgres-extended-10_pgpool-3.3_barman-2.3
6612
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-9.6_pgpool-3.7_barman-2.4 ./tests/run.sh
6713
env:
6814
- COMBINATION=postgres-9.6_pgpool-3.7_barman-2.4

make/travis/make.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ FILE_TO=".travis.yml"
66

77
template $FILE_HEADER $FILE_TO
88

9-
export TEST_COMBINATIONS=(`ls -r docker-compose | grep '.yml' | xargs -I % basename % '.yml'`)
9+
export TEST_COMBINATIONS=(`ls -r docker-compose | grep '.yml' | grep -v 'extended' | xargs -I % basename % '.yml'`)
1010
template $FILE_FROM $FILE_TO

0 commit comments

Comments
 (0)