Merge pull request #820 from mikebrow/travis-update

streamlining travis
This commit is contained in:
Daniel J Walsh 2017-08-31 05:35:01 -04:00 committed by GitHub
commit f889a578d4

View file

@ -1,8 +1,4 @@
language: go language: go
go:
- 1.7.x
- 1.8.x
- tip
sudo: required sudo: required
@ -29,13 +25,27 @@ before_script:
- export PATH=$HOME/gopath/bin:$PATH - export PATH=$HOME/gopath/bin:$PATH
- export LD_LIBRARY_PATH=/usr/local/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}} - export LD_LIBRARY_PATH=/usr/local/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
script: jobs:
- make .gitvalidation include:
- make gofmt - stage: Build and Verify
- make lint script:
- make integration - make .gitvalidation
- make docs - make gofmt
- make - make lint
- make docs
- make
go: 1.8.x
- script:
- make .gitvalidation
- make gofmt
- make lint
- make docs
- make
go: tip
- stage: Integration Test
script:
- make integration
go: 1.8.x
notifications: notifications:
irc: "chat.freenode.net#cri-o" irc: "chat.freenode.net#cri-o"