1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-02 01:15:48 +00:00

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