Sha256: 97d8bbc8ea6613afa88a86374e67b6de5aaedb178e91ea158bcb6017876f3461

Contents?: true

Size: 956 Bytes

Versions: 3

Compression:

Stored size: 956 Bytes

Contents

sudo: false
language: ruby
rvm:
  - 2.5
env:
  jobs:
    - PGVERSION: "9.6"
    - PGVERSION: "10"
    - PGVERSION: "11"
    - PGVERSION: "12"
services:
  - postgresql
before_install:
  - "for CLUSTER_VERSION in $(pg_lsclusters -h | cut -d' ' -f1); do sudo pg_dropcluster $CLUSTER_VERSION main --stop || true; done"
  - sudo apt-get update
  - sudo apt-get -y install postgresql-$PGVERSION postgresql-client-$PGVERSION postgresql-server-dev-$PGVERSION postgresql-client-common postgresql-common
  - sudo pg_dropcluster $PGVERSION main --stop || true
  - sudo pg_createcluster $PGVERSION main -D /var/ramfs/postgresql/11/main -- --auth=trust
  - sudo pg_ctlcluster start $PGVERSION main
  - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
  - gem install bundler -v 1.15.4
gemfile:
  - gemfiles/rails_5.0.gemfile
  - gemfiles/rails_5.1.gemfile
  - gemfiles/rails_5.2.gemfile
  - gemfiles/rails_6.0.gemfile
script: "bundle exec rake spec"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pg_ha_migrations-1.3.0 .travis.yml
pg_ha_migrations-1.2.5 .travis.yml
pg_ha_migrations-1.2.4 .travis.yml