Push event #4.1 passed

  • Ran for
AMD64
Go: 1.10.x
Git
The .travis.yml file used for this job is not available
Build Config
{
  "go": [
    "1.10.x"
  ],
  "os": [
    "linux"
  ],
  "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}\""
    ]
  },
  "dist": "trusty",
  "sudo": false,
  "cache": {
    "directories": [
      "${HOME}/gopath/bin"
    ]
  },
  "addons": {
    "artifacts": {
      "paths": [
        "./build/linux/amd64/pupcycler",
        "./build/darwin/amd64/pupcycler",
        "./build.tar.gz"
      ],
      "enabled": true,
      "target_paths": [
        "travis-ci/pupcycler/$TRAVIS_BRANCH",
        "travis-ci/pupcycler/$TRAVIS_COMMIT",
        "travis-ci/pupcycler/$TRAVIS_COMMIT_SHORT",
        "travis-ci/pupcycler/$TRAVIS_COMMIT_LESSSHORT"
      ]
    }
  },
  "script": [
    "make",
    "build/linux/amd64/pupcycler --help"
  ],
  "language": "go",
  "after_success": [
    "bash <(curl -s https://codecov.io/bash)",
    "tar -czvf build.tar.gz build Procfile Makefile"
  ],
  "notifications": {
    "email": {
      "enabled": false
    }
  }
}