Skip to content

Commit f8b4699

Browse files
committed
Dropped go get from travis config
1 parent 1ebb35b commit f8b4699

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

.travis.yml

+7-11
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,14 @@ go:
77
before_install:
88
- sudo apt-get update -qq
99
- sudo apt-get install -y libpam-dev
10-
- go get github.com/msteinert/pam
1110

12-
install:
13-
- go get -t -v ./...
14-
15-
script: |
16-
go build -v -tags "pam"
17-
18-
for pkg in $(go list ./... | grep -v /vendor/)
19-
do
20-
go test -v -race -cover -coverprofile $GOPATH/src/$pkg/coverage.out $pkg || exit 1
21-
done
11+
script:
12+
- go build -v -tags 'cert sqlite pam miniwinsvc'
13+
- |
14+
for pkg in $(go list ./... | grep -v /vendor/)
15+
do
16+
go test -v -race -cover -coverprofile $GOPATH/src/$pkg/coverage.out $pkg || exit 1
17+
done
2218
2319
after_success:
2420
- bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)