Skip to content

Commit 7aebc06

Browse files
authored
CI: Try relative import path pattern, since full failed.
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
1 parent a774498 commit 7aebc06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ test:
1717
- diff -u <(echo -n) <(gofmt -d .)
1818
- go tool vet *.go # Go package in root directory.
1919
- for d in */; do echo $d; done | grep -v tests/ | grep -v third_party/ | xargs go tool vet # All subdirectories except "tests", "third_party".
20-
- diff -u <(echo -n) <(go list github.com/gopherjs/gopherjs/compiler/natives/src/...) # All those packages should have // +build js.
20+
- diff -u <(echo -n) <(go list ./compiler/natives/src/...) # All those packages should have // +build js.
2121
- >
2222
gopherjs test -v --short
2323
github.com/gopherjs/gopherjs/tests

0 commit comments

Comments
 (0)