Dropped go get from travis config

This commit is contained in:
Thomas Boerger 2016-11-03 23:19:17 +01:00
parent 1ebb35b988
commit f8b4699a14
No known key found for this signature in database
GPG key ID: 5A388F55283960B6

View file

@ -7,18 +7,14 @@ go:
before_install: before_install:
- sudo apt-get update -qq - sudo apt-get update -qq
- sudo apt-get install -y libpam-dev - sudo apt-get install -y libpam-dev
- go get github.com/msteinert/pam
install: script:
- go get -t -v ./... - go build -v -tags 'cert sqlite pam miniwinsvc'
- |
script: | for pkg in $(go list ./... | grep -v /vendor/)
go build -v -tags "pam" do
go test -v -race -cover -coverprofile $GOPATH/src/$pkg/coverage.out $pkg || exit 1
for pkg in $(go list ./... | grep -v /vendor/) done
do
go test -v -race -cover -coverprofile $GOPATH/src/$pkg/coverage.out $pkg || exit 1
done
after_success: after_success:
- bash <(curl -s https://codecov.io/bash) - bash <(curl -s https://codecov.io/bash)