meat-sendstats-queue Merge branch 'master' into meat-sendstats-queue

Push event #912 passed

  • Ran for
  • Total time
The .travis.yml file used for this job is not available
Build Config
{
  "env": {
    "global": [
      "PATH=\"${HOME}/bin:${PATH}\"",
      "SHELLCHECK_URL=\"https://s3.amazonaws.com/travis-blue-public/binaries/ubuntu/14.04/x86_64/shellcheck-0.4.4.tar.bz2\"",
      "SHFMT_URL=\"https://github.com/mvdan/sh/releases/download/v0.1.0/shfmt_v0.1.0_linux_amd64\""
    ],
    "matrix": [
      "INTEGRATION_SPECS=1",
      "INTEGRATION_SPECS=0"
    ]
  },
  "rvm": "2.3.1",
  "dist": "trusty",
  "sudo": false,
  "cache": {
    "apt": true,
    "directories": [
      "${HOME}/bin"
    ]
  },
  "group": "beta",
  "addons": {
    "apt": {
      "packages": [
        "bc"
      ]
    }
  },
  "script": [
    "./runtests",
    "git diff --exit-code",
    "git diff --cached --exit-code",
    "if [[ $INTEGRATION_SPECS = 1 ]]; then bundle exec chirp; fi"
  ],
  "language": "ruby",
  "after_failure": "bundle exec chirp dumplogs ./log",
  "after_success": [
    "bundle exec chirp pushback",
    "bundle exec chirp sendstats"
  ],
  "notifications": {
    "webhooks": {
      "urls": [
        "https://chirp-tracker-production.herokuapp.com/travis"
      ],
      "on_failure": "never",
      "on_success": "always"
    }
  },
  "before_install": [
    "mkdir -p \"${HOME}/bin\"",
    "if ! shellcheck --version; then curl -sSL \"${SHELLCHECK_URL}\" | tar -C \"${HOME}/bin\" -xjf -; fi",
    "if ! command -v shfmt; then curl -sSL \"${SHFMT_URL}\" -o \"${HOME}/bin/shfmt\"; chmod +x \"${HOME}/bin/shfmt\"; fi"
  ]
}