Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 55a9bc9

Browse files
committed
increment CI go versions from 1.8.x/1.9.x/tip to 1.9.x/"1.10"/tip
1 parent 235ce96 commit 55a9bc9

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.travis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
env:
1313
- DEPTESTBYPASS501=1
1414
os: linux
15-
go: 1.9.x
15+
go: "1.10"
1616
script:
1717
- go test -i ./...
1818
- ./hack/lint.bash
@@ -23,18 +23,18 @@ jobs:
2323
- codeclimate-test-reporter < coverage.txt
2424
# YAML alias, for settings shared across the simpler builds
2525
- &simple-test
26-
go: 1.8.x
26+
go: 1.9.x
2727
stage: test
2828
go_import_path: github.com/golang/dep
2929
install: skip
3030
env:
3131
- DEPTESTBYPASS501=1
32-
script: go test -race $(go list ./... | grep -v vendor)
32+
script: go test -race ./...
3333
- <<: *simple-test
3434
go: tip
3535
- <<: *simple-test
3636
os: osx
37-
go: 1.9.x
37+
go: "1.10"
3838
install:
3939
# brew takes horribly long to update itself despite the above caching
4040
# attempt; only bzr install if it's not on the $PATH
@@ -50,7 +50,7 @@ jobs:
5050
# Related: https://superuser.com/questions/1044130/why-am-i-having-how-can-i-fix-this-error-shell-session-update-command-not-f
5151
- trap EXIT
5252
- go test -race ./...
53-
- go: 1.9.x
53+
- go: "1.10"
5454
stage: deploy
5555
go_import_path: github.com/golang/dep
5656
install: skip

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
NEW FEATURES:
44

5+
* Add CI tests against go1.10. Drop support for go1.8.
6+
57
BUG FIXES:
68

79
IMPROVEMENTS:

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ clone_folder: c:\gopath\src\github.com\golang\dep
99
environment:
1010
GOPATH: c:\gopath
1111
DEPTESTBYPASS501: 1
12-
GOVERSION: 1.8
12+
GOVERSION: 1.9
1313

1414
init:
1515
- git config --global core.autocrlf input
@@ -31,4 +31,4 @@ deploy: false
3131

3232
test_script:
3333
- go build github.com/golang/dep/cmd/dep
34-
- for /f "" %%G in ('go list github.com/golang/dep/... ^| find /i /v "/vendor/"') do ( go test %%G & IF ERRORLEVEL == 1 EXIT 1)
34+
- for /f "" %%G in ('go list github.com/golang/dep/...') do ( go test %%G & IF ERRORLEVEL == 1 EXIT 1)

0 commit comments

Comments
 (0)