Skip to content
This repository was archived by the owner on Dec 10, 2022. It is now read-only.

Update .travis.yml to solve PostgreSQL issues with new base images #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
20 changes: 0 additions & 20 deletions .travis-postgres10.sh

This file was deleted.

9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ services:
# @see https://github.com/travis-ci/travis-ci/issues/8537#issuecomment-354020356
sudo: required
addons:
postgresql: 9.6
postgresql: "10"
apt:
packages:
- postgresql-10
- postgresql-client-10

cache:
yarn: true
Expand All @@ -29,9 +33,6 @@ before_install:
- curl --location https://yarnpkg.com/install.sh | bash -s -- --version "$( node -e "console.log(require('./package.json').engines.yarn)" )"
- export PATH="$HOME/.yarn/bin:$PATH"

# Upgrade to PostgreSQL 10.
- ./.travis-postgres10.sh

install:
- yarn --frozen-lockfile

Expand Down