This repository was archived by the owner on Sep 9, 2020. It is now read-only.
File tree 3 files changed +9
-7
lines changed
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -12,26 +12,26 @@ jobs:
12
12
env :
13
13
- DEPTESTBYPASS501=1
14
14
os : linux
15
- go : 1.9.x
15
+ go : " 1.10 "
16
16
script :
17
17
- make validate test
18
18
- ./hack/coverage.bash
19
19
after_success :
20
20
- codeclimate-test-reporter < coverage.txt
21
21
# YAML alias, for settings shared across the simpler builds
22
22
- &simple-test
23
- go : 1.8 .x
23
+ go : 1.9 .x
24
24
stage : test
25
25
go_import_path : github.com/golang/dep
26
26
install : skip
27
27
env :
28
28
- DEPTESTBYPASS501=1
29
- script : go test -race $(go list ./... | grep -v vendor)
29
+ script : go test -race ./...
30
30
- << : *simple-test
31
31
go : tip
32
32
- << : *simple-test
33
33
os : osx
34
- go : 1.9.x
34
+ go : " 1.10 "
35
35
install :
36
36
# brew takes horribly long to update itself despite the above caching
37
37
# attempt; only bzr install if it's not on the $PATH
47
47
# Related: https://superuser.com/questions/1044130/why-am-i-having-how-can-i-fix-this-error-shell-session-update-command-not-f
48
48
- trap EXIT
49
49
- go test -race ./...
50
- - go : 1.9.x
50
+ - go : " 1.10 "
51
51
stage : deploy
52
52
go_import_path : github.com/golang/dep
53
53
install : skip
Original file line number Diff line number Diff line change 2
2
3
3
NEW FEATURES:
4
4
5
+ * Add CI tests against go1.10. Drop support for go1.8.
6
+
5
7
BUG FIXES:
6
8
7
9
IMPROVEMENTS:
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ clone_folder: c:\gopath\src\github.com\golang\dep
9
9
environment :
10
10
GOPATH : c:\gopath
11
11
DEPTESTBYPASS501 : 1
12
- GOVERSION : 1.8
12
+ GOVERSION : 1.9
13
13
14
14
init :
15
15
- git config --global core.autocrlf input
@@ -31,4 +31,4 @@ deploy: false
31
31
32
32
test_script :
33
33
- 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)
You can’t perform that action at this time.
0 commit comments