From cd83976947245e17f4c429e791291ac649c07db9 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Sat, 20 Dec 2014 03:46:30 -0600 Subject: [PATCH] Update TravisCI to use goclean script. --- .travis.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ae71c02..062c917 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,15 @@ language: go go: release -install: go get -d -t -v ./... +before_install: + - gocleandeps=c16c849abae90c23419d + - git clone https://gist.github.com/$gocleandeps.git + - goclean=71d0380287747d956a26 + - git clone https://gist.github.com/$goclean.git +install: + - go get -d -t -v ./... + - bash $gocleandeps/gocleandeps.sh +script: + - export PATH=$PATH:$HOME/gopath/bin + - bash $goclean/goclean.sh +after_success: + - goveralls -coverprofile=repo.cov -service=travis-ci