embd/.travis.yml

15 lines
258 B
YAML
Raw Permalink Normal View History

2014-03-01 22:08:32 +01:00
language: go
2014-04-23 23:33:20 +02:00
branches:
except:
- go-rpi
2014-03-01 22:08:32 +01:00
go:
2016-09-09 07:50:29 +02:00
- 1.6
- 1.7
script:
- go test -bench=. -v ./... | grep -v 'no test files' ; test ${PIPESTATUS[0]} -eq 0
- cd samples; find . -name "*.go" -print0 | xargs -0 -n1 go build
2016-09-09 08:32:02 +02:00
- cd ../embd; go build .