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
12
env :
13
13
- DEPTESTBYPASS501=1
14
14
os : linux
15
- go : 1.9.x
15
+ go : " 1.10 "
16
16
script :
17
17
- go test -i ./...
18
18
- ./hack/lint.bash
@@ -23,18 +23,18 @@ jobs:
23
23
- codeclimate-test-reporter < coverage.txt
24
24
# YAML alias, for settings shared across the simpler builds
25
25
- &simple-test
26
- go : 1.8 .x
26
+ go : 1.9 .x
27
27
stage : test
28
28
go_import_path : github.com/golang/dep
29
29
install : skip
30
30
env :
31
31
- DEPTESTBYPASS501=1
32
- script : go test -race $(go list ./... | grep -v vendor)
32
+ script : go test -race ./...
33
33
- << : *simple-test
34
34
go : tip
35
35
- << : *simple-test
36
36
os : osx
37
- go : 1.9.x
37
+ go : " 1.10 "
38
38
install :
39
39
# brew takes horribly long to update itself despite the above caching
40
40
# attempt; only bzr install if it's not on the $PATH
50
50
# Related: https://superuser.com/questions/1044130/why-am-i-having-how-can-i-fix-this-error-shell-session-update-command-not-f
51
51
- trap EXIT
52
52
- go test -race ./...
53
- - go : 1.9.x
53
+ - go : " 1.10 "
54
54
stage : deploy
55
55
go_import_path : github.com/golang/dep
56
56
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