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.5.tar.bz2\"",
"SHFMT_URL=\"https://github.com/mvdan/sh/releases/download/v2.0.0/shfmt_v2.0.0_linux_amd64\""
],
"matrix": [
"INTEGRATION_SPECS=1",
"INTEGRATION_SPECS=0"
]
},
"rvm": "2.4.2",
"dist": "trusty",
"sudo": false,
"cache": {
"apt": true,
"directories": [
"${HOME}/bin"
]
},
"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 [[ ! -f \"${HOME}/bin/shellcheck\" ]]; then curl -sSL \"${SHELLCHECK_URL}\" | tar -C \"${HOME}/bin\" -xjf -; fi",
"shellcheck --version",
"if [[ ! -f \"${HOME}/bin/shfmt\" ]]; then curl -sSL \"${SHFMT_URL}\" -o \"${HOME}/bin/shfmt\"; chmod +x \"${HOME}/bin/shfmt\"; fi",
"shfmt -version"
]
}