Skip to content

Commit

Permalink
No linux support makes static analysis fail
Browse files Browse the repository at this point in the history
  • Loading branch information
lietu committed Nov 18, 2019
1 parent 67e8e9d commit da6895c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ install:

script:
# - go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
- go vet . ./client ./server ./shared
- staticcheck . ./client ./server ./shared
- errcheck . ./client ./server ./shared
- golangci-lint run . ./client ./server ./shared
- go vet . ./client ./server ./shared | true
- staticcheck . ./client ./server ./shared | true
- errcheck . ./client ./server ./shared | true
- golangci-lint run . ./client ./server ./shared | true

- GOOS=windows GOARCH=amd64 go build -o better-dns-x86_64.exe better-dns.go
- GOOS=windows GOARCH=386 go build -o better-dns-x86.exe better-dns.go
Expand Down

0 comments on commit da6895c

Please sign in to comment.