summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2018-02-18 20:39:03 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2018-02-18 20:39:03 +0900
commitf6fc0a3e9639e1decf0765e56a72510bf2e7bcda (patch)
treed352f920ee5d78a660768e0533bee5c009e4cc9f
parentd779a597c71268628ac794cb89fade4f77514c7d (diff)
add golang 1.10 support
drop 1.8 support also. Note that ugly double quates are necessary https://github.com/travis-ci/gimme/issues/132 Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r--.travis.yml6
-rw-r--r--README.md2
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 0ffddc69..3f41d97f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,7 +1,7 @@
language: go
_dep_ensure: &_dep_ensure
- go: 1.8
+ go: "1.10"
before_install: go get -u github.com/golang/dep/cmd/dep
install: $GOPATH/bin/dep ensure
@@ -58,11 +58,11 @@ matrix:
- <<: *_unittest
env:
- DESCRIPTION="Unit Tests"
- go: 1.8
+ go: 1.9
- <<: *_unittest
env:
- DESCRIPTION="Unit Tests + goreleaser"
- go: 1.9
+ go: "1.10"
after_success:
- test -n "$TRAVIS_TAG" && curl -sL https://git.io/goreleaser | bash
- <<: *_unittest
diff --git a/README.md b/README.md
index 4dae5038..cc431fb5 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ Try [a binary release](https://github.com/osrg/gobgp/releases/latest).
## To start developing GoBGP
-You need a working [Go environment](https://golang.org/doc/install) (1.8 or newer).
+You need a working [Go environment](https://golang.org/doc/install) (1.9 or newer).
```bash
$ go get -u github.com/golang/dep/cmd/dep