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

Update go version of CI stages #1095

Merged
merged 1 commit into from
Aug 30, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
env:
- DEPTESTBYPASS501=1
os: linux
go: 1.8.x
go: 1.9.x
script:
- go build -v ./cmd/dep
- ./hack/lint.bash
Expand All @@ -22,7 +22,7 @@ jobs:
- codeclimate-test-reporter < coverage.txt
# YAML alias, for settings shared across the simpler builds
- &simple-test
go: 1.9.x
go: 1.8.x
stage: test
go_import_path: github.com/golang/dep
install: skip
Expand All @@ -33,7 +33,7 @@ jobs:
go: tip
- <<: *simple-test
os: osx
go: 1.8.x
go: 1.9.x
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 @@ -48,8 +48,8 @@ jobs:
# for future safety.
# 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 list ./... | grep -v vendor)
- go: 1.8.x
- go test -race ./...
- go: 1.9.x
stage: deploy
go_import_path: github.com/golang/dep
install: skip
Expand Down