ps-dont-build-tags Don't build tag pushes

Recently after changes on how we parse payload on pushes form github, we
started building tag pushes. Ultimately it's something we could do,
but right now tags are interpreted as branches, which is wrong anyway.
I'm disabling building tag pushes for now, until we can handle it
properly.

Piotr Sarnacki authored and committed

Push event #2660 passed

  • Ran for
  • Total time
  • New branch build
The .travis.yml file used for this job is not available
Build Config
{
  "env": {
    "global": [
      "RUBY_GC_MALLOC_LIMIT=90000000",
      "RUBY_FREE_MIN=200000"
    ]
  },
  "jdk": [
    "oraclejdk7",
    "openjdk6"
  ],
  "rvm": [
    "jruby-19mode"
  ],
  "matrix": {
    "include": [
      {
        "jdk": null,
        "rvm": "1.9.3"
      },
      {
        "jdk": null,
        "rvm": "2.0.0"
      },
      {
        "jdk": null,
        "rvm": "rbx-2.0.0-rc1"
      }
    ],
    "allow_failures": [
      {
        "jdk": null,
        "rvm": "rbx-2.0.0-rc1"
      }
    ]
  },
  "script": [
    "./build.sh"
  ],
  "language": "ruby",
  "services": [
    "redis"
  ],
  "before_script": [
    "sudo service mysql stop",
    "redis-cli config set save \"\"",
    "RAILS_ENV=test rake db:create db:schema:load --trace"
  ],
  "notifications": {
    "irc": "irc.freenode.org#travis"
  }
}