Skip to content

Commit

Permalink
Disable travis's postgres
Browse files Browse the repository at this point in the history
It interferes with the one we want to use/create from our docker environment.
See: travis-ci/travis-ci#4842 (comment)
  • Loading branch information
wlach committed Jul 31, 2018
1 parent dfc1c73 commit 9079de6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ matrix:
- curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
# Shut down postgres because it blocks our db container's port map to :5432
- sudo service postgresql stop
# Wait for it to stop
- while sudo lsof -Pi :5432 -sTCP:LISTEN -t; do sleep 1; done

install:
- npm install
Expand Down

0 comments on commit 9079de6

Please sign in to comment.