From 58812fad4293db2edaee0fa04b2c5477bc6cc3f0 Mon Sep 17 00:00:00 2001 From: Taylor Gerring Date: Sat, 15 Nov 2014 19:36:30 -0600 Subject: [PATCH] Reorg travis.yml --- .travis.yml | 10 ++++------ travis.sh => install_deps.sh | 0 2 files changed, 4 insertions(+), 6 deletions(-) rename travis.sh => install_deps.sh (100%) mode change 100644 => 100755 diff --git a/.travis.yml b/.travis.yml index 25b44fc3ae..c253f711ed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,6 @@ +language: go +go: + - 1.3 before_install: - sudo add-apt-repository ppa:ubuntu-sdk-team/ppa -y - sudo apt-get update -qq @@ -7,9 +10,7 @@ install: - go get github.com/golang/lint/golint - go get code.google.com/p/go.tools/cmd/vet - go get code.google.com/p/go.tools/cmd/cover -language: go -go: - - 1.3 + - ./install_deps.sh after_script: # - gofmt -l -w . # - goimports -l -w . @@ -17,6 +18,3 @@ after_script: # - go vet ./... # - go test -race ./... - ./gocoverage.sh -script: - - chmod +x travis.sh - - ./travis.sh diff --git a/travis.sh b/install_deps.sh old mode 100644 new mode 100755 similarity index 100% rename from travis.sh rename to install_deps.sh