Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Try to install pg 9.6.2 manually #4444

Merged
merged 1 commit into from
May 11, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@ language: python
git:
depth: 5
addons:
postgresql: 9.5
postgresql: 9.6
firefox: latest-esr
before_install:
- git branch -vv | grep '^*'
- pwd
- find . -name "*.sh" -exec bash -n {} \;

# Temporarily install 9.6.2 manually, remove once 9.6.2 is default on Travis

- sudo add-apt-repository "deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main"
- wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
- sudo apt-get update
- sudo apt-get install postgresql-9.6

# Sometimes ya just halfta ...
- git clone -b "2.1.0" --depth 1 https://github.com/lloyd/yajl.git && cd yajl && ./configure && sudo make install && cd ..

Expand Down