Skip to content

Commit

Permalink
Dropped go get from travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Nov 4, 2016
1 parent 1ebb35b commit f8b4699
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,14 @@ go:
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libpam-dev
- go get github.com/msteinert/pam

install:
- go get -t -v ./...

script: |
go build -v -tags "pam"
for pkg in $(go list ./... | grep -v /vendor/)
do
go test -v -race -cover -coverprofile $GOPATH/src/$pkg/coverage.out $pkg || exit 1
done
script:
- go build -v -tags 'cert sqlite pam miniwinsvc'
- |
for pkg in $(go list ./... | grep -v /vendor/)
do
go test -v -race -cover -coverprofile $GOPATH/src/$pkg/coverage.out $pkg || exit 1
done
after_success:
- bash <(curl -s https://codecov.io/bash)
Expand Down

0 comments on commit f8b4699

Please sign in to comment.