revert-pusher-default-branch-changes Revert "Merge pull request #493 from travis-ci/send-default-…

We've started seeing performance issues in hub after deploying this
change. I'm going to revert that here as well just in case this
happens in gatekeeper too.

This reverts commit 3c20e66a20d9d540e2a6c5fb70c542fe97c62e25, reversing
changes made to c7ea1bb326b32898df5568e2699466cdaf5395b3.

Piotr Sarnacki avatar Piotr Sarnacki

Push event #4416 passed

  • Ran for
  • Total time
  • New branch build
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"
  ]
}