Browse Source

Dropped go get from travis config

master
Thomas Boerger 8 years ago
parent
commit
f8b4699a14
No known key found for this signature in database GPG Key ID: 5A388F55283960B6
1 changed files with 7 additions and 11 deletions
  1. +7
    -11
      .travis.yml

+ 7
- 11
.travis.yml View File

@@ -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)


Loading…
Cancel
Save