Skip to content

Commit 7d3da09

Browse files
committed
Fix CI config to include syscall/js in the list of tested packages.
go list only returns this package with GOOS=js GOARCH=wasm. I've verified that no packages are added or removed from the test set by this change.
1 parent 21973db commit 7d3da09

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
@@ -29,7 +29,7 @@ jobs:
2929
- 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*".
3030
- run: diff -u <(echo -n) <(go list ./compiler/natives/src/...) # All those packages should have // +build js.
3131
- run: gopherjs install -v net/http # Should build successfully (can't run tests, since only client is supported).
32-
- run: ulimit -s 10000 && gopherjs test --minify -v --short github.com/gopherjs/gopherjs/js/... github.com/gopherjs/gopherjs/tests/... $(go list std | grep -v -x -f .std_test_pkg_exclusions)
32+
- run: ulimit -s 10000 && gopherjs test --minify -v --short github.com/gopherjs/gopherjs/js/... github.com/gopherjs/gopherjs/tests/... $(GOOS=js GOARCH=wasm go list std | grep -v -x -f .std_test_pkg_exclusions)
3333
- run: go test -v -race ./...
3434
- run: gopherjs test -v fmt # No minification should work.
3535
- run:

0 commit comments

Comments
 (0)