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

Commit

Permalink
Merge pull request #1620 from jmank88/go1.10
Browse files Browse the repository at this point in the history
increment CI go versions from 1.8.x/1.9.x/tip to 1.9.x/1.10.x/tip
  • Loading branch information
jmank88 committed Feb 19, 2018
2 parents 1dc2d8b + 55a9bc9 commit 802927f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,26 @@ jobs:
env:
- DEPTESTBYPASS501=1
os: linux
go: 1.9.x
go: "1.10"
script:
- make validate test
- ./hack/coverage.bash
after_success:
- codeclimate-test-reporter < coverage.txt
# YAML alias, for settings shared across the simpler builds
- &simple-test
go: 1.8.x
go: 1.9.x
stage: test
go_import_path: github.com/golang/dep
install: skip
env:
- DEPTESTBYPASS501=1
script: go test -race $(go list ./... | grep -v vendor)
script: go test -race ./...
- <<: *simple-test
go: tip
- <<: *simple-test
os: osx
go: 1.9.x
go: "1.10"
install:
# brew takes horribly long to update itself despite the above caching
# attempt; only bzr install if it's not on the $PATH
Expand All @@ -47,7 +47,7 @@ jobs:
# Related: https://superuser.com/questions/1044130/why-am-i-having-how-can-i-fix-this-error-shell-session-update-command-not-f
- trap EXIT
- go test -race ./...
- go: 1.9.x
- go: "1.10"
stage: deploy
go_import_path: github.com/golang/dep
install: skip
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

NEW FEATURES:

* Add CI tests against go1.10. Drop support for go1.8.

BUG FIXES:

IMPROVEMENTS:
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ clone_folder: c:\gopath\src\github.com\golang\dep
environment:
GOPATH: c:\gopath
DEPTESTBYPASS501: 1
GOVERSION: 1.8
GOVERSION: 1.9

init:
- git config --global core.autocrlf input
Expand All @@ -31,4 +31,4 @@ deploy: false

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

0 comments on commit 802927f

Please sign in to comment.