File: .travis.yml

package info (click to toggle)
golang-github-klauspost-reedsolomon 1.2%2Bgit20161028.14.d0a56f7-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 668 kB
  • ctags: 255
  • sloc: asm: 134; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 450 bytes parent folder | download
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
language: go

sudo: false

os:
  - linux
  - osx 

go:
  - 1.3
  - 1.4
  - 1.5
  - 1.6
  - tip

install:
 - go get ./...

script: 
 - go vet ./...
 - go test -v -cpu=1,2,4 .
 - go test -v -cpu=1,2,4 -short -race .
 - go test -tags=noasm -v -cpu=1,2,4 -short -race .
 - go build examples/simple-decoder.go
 - go build examples/simple-encoder.go
 - go build examples/stream-decoder.go
 - go build examples/stream-encoder.go
 - diff <(gofmt -d .) <("")