Skip to content

Commit

Permalink
CI: Try relative import path pattern, since full failed.
Browse files Browse the repository at this point in the history
Something about it using symlinks is causing trouble:

	$ diff -u <(echo -n) <(go list github.com/gopherjs/gopherjs/compiler/natives/src/...)
	warning: ignoring symlink /home/ubuntu/.go_project/src/github.com/gopherjs/gopherjs
	warning: "github.com/gopherjs/gopherjs/compiler/natives/src/..." matched no packages
  • Loading branch information
dmitshur committed Jul 25, 2017
1 parent a774498 commit 7aebc06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ test:
- diff -u <(echo -n) <(gofmt -d .)
- go tool vet *.go # Go package in root directory.
- for d in */; do echo $d; done | grep -v tests/ | grep -v third_party/ | xargs go tool vet # All subdirectories except "tests", "third_party".
- diff -u <(echo -n) <(go list github.com/gopherjs/gopherjs/compiler/natives/src/...) # All those packages should have // +build js.
- diff -u <(echo -n) <(go list ./compiler/natives/src/...) # All those packages should have // +build js.
- >
gopherjs test -v --short
github.com/gopherjs/gopherjs/tests
Expand Down

0 comments on commit 7aebc06

Please sign in to comment.