From 972931608243bf3803ceb3533bbeb151cc5195de Mon Sep 17 00:00:00 2001 From: Tony Blyler Date: Fri, 17 Jun 2016 08:46:36 -0400 Subject: [PATCH] Do not try to run tests since we do not have any --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index f56089e..c51854b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,9 @@ before_install: - go get github.com/mitchellh/gox - go get github.com/tcnksm/ghr +# There are no tests at the moment :( +script: "true" + after_success: - "[ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ] && gox -ldflags \"-X 'main.buildVersion=${BUILD_VERSION} (${TRAVIS_COMMIT})' -X 'main.buildDate=${DATE}'\" -output \"dist/hoarder_{{.OS}}_{{.Arch}}\" ./cmd/hoarder || false" - '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && ghr --username tblyler --token "${GITHUB_TOKEN}" --replace --prerelease --debug "${TAG}" dist/ || false'