23 lines
294 B
YAML
23 lines
294 B
YAML
|
# Travis CI configuration file for psycopg2
|
||
|
|
||
|
dist: trusty
|
||
|
sudo: required
|
||
|
|
||
|
env:
|
||
|
- PGVER=9.6
|
||
|
- PGVER=9.5
|
||
|
- PGVER=9.4
|
||
|
- PGVER=9.3
|
||
|
- PGVER=9.2
|
||
|
|
||
|
install:
|
||
|
- source regress/travis_prepare.sh
|
||
|
- make
|
||
|
- sudo make install
|
||
|
|
||
|
script:
|
||
|
- regress/travis_test.sh
|
||
|
|
||
|
notifications:
|
||
|
email: false
|