Skip to content

Commit 756c79f

Browse files
committed
Update circle.yml
`go tool vet` is abandoned. Use `go vet` instead.
1 parent 9576d72 commit 756c79f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

circle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- run: go generate github.com/gopherjs/gopherjs/compiler/prelude
2323
- run: diff -u <(echo -n) <(git status --porcelain)
2424
- run: diff -u <(echo -n) <(gofmt -d .)
25-
- run: go tool vet *.go # Go package in root directory.
26-
- run: for d in */; do echo $d; done | grep -v tests/ | grep -v third_party/ | xargs go tool vet # All subdirectories except "tests", "third_party".
25+
- run: go vet *.go # Go package in root directory.
26+
- run: for d in */; do echo ./$d...; done | grep -v ./doc | grep -v ./test | grep -v ./node | xargs go vet # All subdirectories except "doc", "tests", "node*".
2727
- run: diff -u <(echo -n) <(go list ./compiler/natives/src/...) # All those packages should have // +build js.
2828
- run: gopherjs install -v net/http # Should build successfully (can't run tests, since only client is supported).
2929
- run: ulimit -s 10000 && gopherjs test --minify -v --short github.com/gopherjs/gopherjs/tests/... $(go list std | grep -v -x -f .std_test_pkg_exclusions)

0 commit comments

Comments
 (0)