This repository has been archived on 2023-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
pgls/.travis.yml

18 lines
561 B
YAML
Raw Normal View History

2018-02-07 00:44:36 +03:00
sudo: required
language: ruby
rvm:
- "2.0.0"
- ruby-head
env:
- "PGVERSION=10.0-1-linux-x64 PATH=\"/opt/PostgreSQL/10/bin:$PATH\""
- "PGVERSION=9.3.19-1-linux-x64 PATH=\"/opt/PostgreSQL/9.3/bin:$PATH\""
before_install:
- gem install bundler
- bundle install
# Download and install postgresql version to test against in /opt
- |
wget http://get.enterprisedb.com/postgresql/postgresql-$PGVERSION.run && \
chmod +x postgresql-$PGVERSION.run && \
sudo ./postgresql-$PGVERSION.run --extract-only 1 --mode unattended
script: rake test