Skip to content

Commit 715e500

Browse files
committed
Merge pull request brianc#761 from sehrope/travis-matrix
Add node/PG version matrix to Travis-CI config
2 parents 0102bad + 8ce6811 commit 715e500

File tree

2 files changed

+40
-24
lines changed

2 files changed

+40
-24
lines changed

.travis.yml

Lines changed: 40 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,45 @@
11
language: node_js
2-
node_js:
3-
- "0.10"
4-
- "0.12"
5-
- "iojs"
2+
sudo: false
63
before_script:
74
- node script/create-test-tables.js pg://postgres@127.0.0.1:5432/postgres
85
env:
96
- PGUSER=postgres PGDATABASE=postgres
7+
8+
matrix:
9+
include:
10+
- node_js: "0.10"
11+
addons:
12+
postgresql: "9.1"
13+
- node_js: "0.10"
14+
addons:
15+
postgresql: "9.2"
16+
- node_js: "0.10"
17+
addons:
18+
postgresql: "9.3"
19+
- node_js: "0.10"
20+
addons:
21+
postgresql: "9.4"
22+
- node_js: "0.12"
23+
addons:
24+
postgresql: "9.1"
25+
- node_js: "0.12"
26+
addons:
27+
postgresql: "9.2"
28+
- node_js: "0.12"
29+
addons:
30+
postgresql: "9.3"
31+
- node_js: "0.12"
32+
addons:
33+
postgresql: "9.4"
34+
- node_js: "iojs-v2"
35+
addons:
36+
postgresql: "9.1"
37+
- node_js: "iojs-v2"
38+
addons:
39+
postgresql: "9.2"
40+
- node_js: "iojs-v2"
41+
addons:
42+
postgresql: "9.3"
43+
- node_js: "iojs-v2"
44+
addons:
45+
postgresql: "9.4"

script/travis-pg-9.2-install.sh

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)