Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix circle.yml
  • Loading branch information
hajimehoshi committed Mar 28, 2019
1 parent 158447e commit db381e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circle.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
- run: diff -u <(echo -n) <(git status --porcelain)
- run: diff -u <(echo -n) <(gofmt -d .)
- run: go vet . # Go package in root directory.
- 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*".
- run: for d in */; do echo ./$d...; done | grep -v ./doc | grep -v ./tests | grep -v ./node | xargs go vet # All subdirectories except "doc", "tests", "node*".
- run: diff -u <(echo -n) <(go list ./compiler/natives/src/...) # All those packages should have // +build js.
- run: gopherjs install -v net/http # Should build successfully (can't run tests, since only client is supported).
- 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)
Expand Down

0 comments on commit db381e3

Please sign in to comment.