Sha256: c1adb7c796a6b00940277bd03f1d81ecb59b6a176e19144db44980ce575ef76c

Contents?: true

Size: 987 Bytes

Versions: 2

Compression:

Stored size: 987 Bytes

Contents

sudo: required
dist: trusty
language: ruby
global:
  - USERNAME=travis
  - PASSWORD=
addons:
  apt:
    packages:
      # https://github.com/travis-ci/docs-travis-ci-com/pull/743
      - haveged
      - mysql-server-5.6
      - mysql-client-core-5.6
      - mysql-client-5.6
rvm:
  - 2.3
  - 2.2
  - 2.1
  - 1.9.3
  - rbx
  - jruby-1.7
  - jruby-9
matrix:
  allow_failures:
    - rvm: rbx
env:
  - DB=postgresql PGVERSION=9.4
  - DB=postgresql PGVERSION=9.5
  - DB=postgresql PGVERSION=9.4 UNIQUE_CONSTRAINT=true
  - DB=postgresql PGVERSION=9.5 UNIQUE_CONSTRAINT=true
  - DB=mysql DB_USER=root
before_install:
  - if [ "$DB" = 'mysql' ]; then sudo ./travis/tune_mysql.sh; fi
# Right now the build-script is properly installing Postgres version.  We will need this to test PG 9.6 and up, though
#  - if [ "$DB" = 'postgresql' ]; then sudo ./travis/install_postgres.sh; fi
  - gem update --system
  - gem update bundler
  - bundle --version
  - gem --version
script: bundle exec rake spec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
upsert-2.2.1 .travis.yml
upsert-2.2.0 .travis.yml