streamlining travis
Signed-off-by: Mike Brown <brownwm@us.ibm.com>
This commit is contained in:
parent
2dccf1b3e5
commit
4ce18f3b28
1 changed files with 21 additions and 11 deletions
20
.travis.yml
20
.travis.yml
|
@ -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}}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
include:
|
||||||
|
- stage: Build and Verify
|
||||||
script:
|
script:
|
||||||
- make .gitvalidation
|
- make .gitvalidation
|
||||||
- make gofmt
|
- make gofmt
|
||||||
- make lint
|
- make lint
|
||||||
- make integration
|
|
||||||
- make docs
|
- make docs
|
||||||
- make
|
- 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"
|
||||||
|
|
Loading…
Reference in a new issue