Skip to content

Commit 6214f20

Browse files
committed
Add vendor check now that content is vendored
Signed-off-by: Phil Estes <[email protected]>
1 parent 4b1ac2b commit 6214f20

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

.travis.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
language: go
22
go:
3-
- "1.10.x"
4-
- "1.11.x"
3+
- "1.12.x"
4+
- "1.13.x"
55

66
go_import_path: github.com/containerd/console
77

8+
env:
9+
- GO111MODULE=on
10+
811
install:
9-
- go get -d
10-
- GOOS=openbsd go get -d
11-
- GOOS=solaris go get -d
12-
- GOOS=windows go get -d
13-
- go get -u github.com/vbatts/git-validation
14-
- go get -u github.com/kunalkushwaha/ltag
12+
- pushd ..; go get -u github.com/vbatts/git-validation; popd
13+
- pushd ..; go get -u github.com/kunalkushwaha/ltag; popd
1514

1615
before_script:
1716
- pushd ..; git clone https://github.com/containerd/project; popd
1817

1918
script:
2019
- DCO_VERBOSITY=-q ../project/script/validate/dco
2120
- ../project/script/validate/fileheader ../project/
21+
- travis_wait ../project/script/validate/vendor
2222
- go test -race
2323
- GOOS=openbsd go build
2424
- GOOS=openbsd go test -c

go.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=
12
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
23
golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e h1:N7DeIrjYszNmSW409R3frPPwglRwMkXSBzwVbkOjLLA=
34
golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

0 commit comments

Comments
 (0)