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

Commit 802927f

Browse files
authored
Merge pull request #1620 from jmank88/go1.10
increment CI go versions from 1.8.x/1.9.x/tip to 1.9.x/1.10.x/tip
2 parents 1dc2d8b + 55a9bc9 commit 802927f

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,26 +12,26 @@ jobs:
1212
env:
1313
- DEPTESTBYPASS501=1
1414
os: linux
15-
go: 1.9.x
15+
go: "1.10"
1616
script:
1717
- make validate test
1818
- ./hack/coverage.bash
1919
after_success:
2020
- codeclimate-test-reporter < coverage.txt
2121
# YAML alias, for settings shared across the simpler builds
2222
- &simple-test
23-
go: 1.8.x
23+
go: 1.9.x
2424
stage: test
2525
go_import_path: github.com/golang/dep
2626
install: skip
2727
env:
2828
- DEPTESTBYPASS501=1
29-
script: go test -race $(go list ./... | grep -v vendor)
29+
script: go test -race ./...
3030
- <<: *simple-test
3131
go: tip
3232
- <<: *simple-test
3333
os: osx
34-
go: 1.9.x
34+
go: "1.10"
3535
install:
3636
# brew takes horribly long to update itself despite the above caching
3737
# attempt; only bzr install if it's not on the $PATH
@@ -47,7 +47,7 @@ jobs:
4747
# Related: https://superuser.com/questions/1044130/why-am-i-having-how-can-i-fix-this-error-shell-session-update-command-not-f
4848
- trap EXIT
4949
- go test -race ./...
50-
- go: 1.9.x
50+
- go: "1.10"
5151
stage: deploy
5252
go_import_path: github.com/golang/dep
5353
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)