Merge pull request #134 from mikebrow/goversionupdate

Putting in the go versions we want to test against
This commit is contained in:
Lantao Liu 2017-08-15 22:38:23 -07:00 committed by GitHub
commit 76652ef49a

View File

@ -1,6 +1,4 @@
language: go language: go
go:
- 1.8
sudo: required sudo: required
@ -23,18 +21,30 @@ before_script:
jobs: jobs:
include: include:
- stage: Build - stage: Verify
script: script:
- make install.tools - make install.tools
- make .gitvalidation - make .gitvalidation
- make verify - make verify
- make binaries go: 1.8.x
- stage: Test - script:
- make install.tools
- make .gitvalidation
- make verify
go: tip
- stage: Build and Test
script: script:
- make install.deps - make install.deps
- make test - make test
- make binaries - make binaries
- make test-cri - make test-cri
go: 1.8.x
- script:
- make install.deps
- make test
- make binaries
- make test-cri
go: tip
after_script: after_script:
# Abuse travis to preserve the log. # Abuse travis to preserve the log.