Push event #4261 passed

  • Ran for
  • Total time
The .travis.yml file used for this job is not available
Build Config
{
  "env": [
    "JRUBY_OPTS=\"--dev -Xcext.enabled=false -Xcompile.invokedynamic=false -J-Xmx1g\""
  ],
  "jdk": "oraclejdk7",
  "rvm": [
    "jruby-1.7.16",
    "jruby-head",
    "jruby-9.0.0.0",
    "2.0",
    "2.1"
  ],
  "sudo": false,
  "cache": {
    "directories": [
      "vendor/bundle"
    ]
  },
  "addons": {
    "artifacts": {
      "paths": [
        "log/"
      ]
    },
    "postgresql": 9.3
  },
  "matrix": {
    "fast_finish": true,
    "allow_failures": [
      {
        "rvm": "jruby-head"
      },
      {
        "rvm": "jruby-9.0.0.0"
      }
    ]
  },
  "script": [
    "./build.sh"
  ],
  "install": [
    "bundle _1.9.0_ install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}"
  ],
  "language": "ruby",
  "services": [
    "redis"
  ],
  "before_script": [
    "redis-cli config set save \"\"",
    "RAILS_ENV=test bundle exec rake db:create db:migrate --trace"
  ],
  "before_install": [
    "if [ $TRAVIS_RUBY_VERSION = 'jruby-9.0.0.0' ]; then rvm get head; rvm use --install jruby-9.0.0.0; ruby --version; fi",
    "gem install bundler -v 1.9.0"
  ]
}