Skip to content

Commit

Permalink
Run tests with 9.3, 9.4, 9.5 and 9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Kukushkin committed Jan 10, 2018
1 parent a3c20f4 commit f637416
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,20 @@ sudo: true
dist: trusty
language: c
compiler: gcc
addons:
postgresql: "9.6"
matrix:
include:
- addons:
postgresql: "9.3"
- addons:
postgresql: "9.4"
- addons:
postgresql: "9.5"
- addons:
postgresql: "9.6"
before_install:
- sudo apt-get update
- sudo apt-get install -y postgresql-server-dev-9.6 libevent-dev
- version=$(postgres -V | egrep -o '[1-9][0-9]*(\.[0-9]{1,}){1,2}')
- sudo apt-get install -y postgresql-server-dev-${version%.*} libevent-dev
- sudo pip install --upgrade cpp-coveralls
script:
- |
Expand Down

0 comments on commit f637416

Please sign in to comment.