Sha256: e574c65bcd30d4f5020acdc97630eea4d704f1f63a531028f234192fd53b7c8c

Contents?: true

Size: 1.36 KB

Versions: 3

Compression:

Stored size: 1.36 KB

Contents

language: ruby
cache: bundler
rvm:
  - 2.2.4

env:
  global:
    # https://github.com/discourse/discourse/blob/master/.travis.yml
    - RUBY_GC_MALLOC_LIMIT=50000000
  matrix:
    - AR_VERSION=3.2
    - AR_VERSION=4.0
    - AR_VERSION=4.1
    - AR_VERSION=4.2
    - AR_VERSION=5.0

matrix:
  include:
    - rvm: jruby-9.0.5.0
      env: AR_VERSION=4.2
      script:
        - bundle exec rake test:jdbcmysql
        - bundle exec rake test:jdbcpostgresql

  fast_finish: true

before_script:
  - mysql -e 'create database activerecord_import_test;'
  - psql -c 'create database activerecord_import_test;' -U postgres
  - psql activerecord_import_test -c 'create extension if not exists hstore;' -U postgres
  - psql -c 'create extension if not exists postgis;' -U postgres
  - psql -c 'create extension if not exists "uuid-ossp";' -U postgres
  - cp test/travis/database.yml test/database.yml

addons:
  postgresql: "9.4"
  apt:
    sources:
      - travis-ci/sqlite3
    packages:
      - sqlite3

script:
  - bundle exec rake test:mysql2
  - bundle exec rake test:mysql2_makara
  - bundle exec rake test:mysql2spatial
  - bundle exec rake test:postgis
  - bundle exec rake test:postgresql
  - bundle exec rake test:postgresql_makara
  - bundle exec rake test:seamless_database_pool
  - bundle exec rake test:spatialite
  - bundle exec rake test:sqlite3
  - bundle exec rubocop

sudo: false

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
activerecord-import-0.16.2 .travis.yml
activerecord-import-0.16.1 .travis.yml
activerecord-import-0.16.0 .travis.yml