Skip to content

Commit ea4033a

Browse files
committed
Don't fail CI on development versions of Go
1 parent 7321407 commit ea4033a

1 file changed

Lines changed: 15 additions & 11 deletions

File tree

.travis.yml

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
sudo: false
22
language: go
3-
go:
4-
- 1.8.x
5-
- 1.9.x
6-
- 1.10.x
7-
- 1.11.x
8-
- master
3+
4+
matrix:
5+
include:
6+
- go: 1.8.x
7+
- go: 1.9.x
8+
- go: 1.10.x
9+
- go: 1.11.x
10+
- go: master
11+
- go: 1.8.1
12+
os: osx
13+
env: BUILD_TAGS=
14+
allow_failures:
15+
- go: master
16+
917
# Install g++-4.8 to support std=c++11 for github.com/google/certificate-transparency/go/merkletree
1018
addons:
1119
apt:
@@ -71,10 +79,6 @@ env:
7179
- GO15VENDOREXPERIMENT=1
7280
matrix:
7381
- BUILD_TAGS="postgresql mysql"
74-
matrix:
75-
include:
76-
- os: osx
77-
go: 1.8.1
78-
env: BUILD_TAGS=
82+
7983
after_success:
8084
- bash <(curl -s https://codecov.io/bash) -f coverprofile.txt

0 commit comments

Comments
 (0)