forked from letsencrypt/boulder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (28 loc) · 1.14 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: go
go:
- 1.4.1
matrix:
fast_finish: true
before_install:
- go get golang.org/x/tools/cmd/vet
- go get golang.org/x/tools/cmd/cover
- go get github.com/golang/lint/golint
- go get github.com/mattn/goveralls
- go get github.com/modocache/gover
install:
- go get -t -v -tags "pkcs11" ./...
script:
- go vet -x ./...
- $HOME/gopath/bin/golint ./...
- go test -covermode=count -coverprofile=analysis.coverprofile ./analysis/
- go test -covermode=count -coverprofile=ca.coverprofile ./ca/
- go test -covermode=count -coverprofile=core.coverprofile ./core/
- go test -covermode=count -coverprofile=log.coverprofile ./log/
- go test -covermode=count -coverprofile=ra.coverprofile ./ra/
- go test -covermode=count -coverprofile=rpc.coverprofile ./rpc/
- go test -covermode=count -coverprofile=sa.coverprofile ./sa/
- go test -covermode=count -coverprofile=test.coverprofile ./test/
- go test -covermode=count -coverprofile=va.coverprofile ./va/
- go test -covermode=count -coverprofile=wfe.coverprofile ./wfe/
- $HOME/gopath/bin/gover
- $HOME/gopath/bin/goveralls -coverprofile=gover.coverprofile -service=travis-ci