master Merge pull request #32 from travis-ci/cha-go-1.7.4

Push event #176.1 passed

  • Ran for
AMD64
Go: 1.7.4
Git
The .travis.yml file used for this job is not available
Build Config
{
  "go": "1.7.4",
  "env": {
    "global": [
      "TRAVIS_COMMIT_SHORT=\"$(echo ${TRAVIS_COMMIT} | cut -b1-7)\"",
      "TRAVIS_COMMIT_LESSSHORT=\"$(echo ${TRAVIS_COMMIT} | cut -b1-9)\"",
      "PATH=\"${HOME}/gopath/bin:${PATH}\""
    ]
  },
  "cache": {
    "directories": [
      "${HOME}/gopath/bin"
    ]
  },
  "addons": {
    "artifacts": {
      "paths": [
        "./build/linux/amd64/cyclist",
        "./build/darwin/amd64/cyclist",
        "./build.tar.gz"
      ],
      "target_paths": [
        "travis-ci/cyclist/$TRAVIS_BRANCH",
        "travis-ci/cyclist/$TRAVIS_COMMIT",
        "travis-ci/cyclist/$TRAVIS_COMMIT_SHORT",
        "travis-ci/cyclist/$TRAVIS_COMMIT_LESSSHORT"
      ]
    }
  },
  "script": [
    "make",
    "build/linux/amd64/cyclist --help",
    "build/linux/amd64/cyclist serve --help",
    "grep -q web Procfile",
    "grep -q worker Procfile"
  ],
  "language": "go",
  "after_success": [
    "bash <(curl -s https://codecov.io/bash)",
    "tar -czvf build.tar.gz build Procfile Makefile"
  ]
}