File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ GoDoc] ( https://godoc.org/github.com/gopherjs/gopherjs/js?status.svg )] ( https://godoc.org/github.com/gopherjs/gopherjs/js )
4
4
[ ![ Sourcegraph] ( https://sourcegraph.com/github.com/gopherjs/gopherjs/-/badge.svg )] ( https://sourcegraph.com/github.com/gopherjs/gopherjs?badge )
5
- [ ![ Circle CI] ( https://circleci .com/gh/ gopherjs/gopherjs. svg?style=svg )] ( https://circleci .com/gh/ gopherjs/gopherjs )
5
+ [ ![ Github Actions CI] ( https://github .com/gopherjs/gopherjs/actions/workflows/ci.yaml/badge. svg )] ( https://github .com/gopherjs/gopherjs/actions/workflows/ci.yaml )
6
6
7
7
GopherJS compiles Go code ([ go.dev] ( https://go.dev/ ) ) to pure JavaScript code. Its main purpose is to give you the opportunity to write front-end code in Go which will still run in all browsers.
8
8
Original file line number Diff line number Diff line change 1
1
# Supported Packages
2
2
3
- On each commit, Circle CI automatically compiles all supported packages with GopherJS and runs their tests:
3
+ On each commit, Github Actions CI automatically compiles all supported packages with GopherJS and runs their tests:
4
4
5
- [ ![ Circle CI] ( https://circleci .com/gh/ gopherjs/gopherjs. svg?style=svg )] ( https://circleci .com/gh/ gopherjs/gopherjs )
5
+ [ ![ Github Actions CI] ( https://github .com/gopherjs/gopherjs/actions/workflows/ci.yaml/badge. svg )] ( https://github .com/gopherjs/gopherjs/actions/workflows/ci.yaml )
6
6
7
7
| Name | Supported | Comment |
8
8
| ------------------- | ------------ | --------------------------------------------------------------------------------- |
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ func TestGoRepositoryCompilerTests(t *testing.T) {
24
24
shards := os .Getenv ("CIRCLE_NODE_TOTAL" )
25
25
shard := os .Getenv ("CIRCLE_NODE_INDEX" )
26
26
if shards != "" && shard != "" {
27
- // We are running under CircleCI parallel test job, so we need to shard execution.
27
+ // When we are running under CircleCI parallel test job, we need to shard execution.
28
28
args = append (args , "-shard=" + shard , "-shards=" + shards )
29
29
// CircleCI reports a lot more cores than we can actually use, so we have to limit concurrency.
30
30
args = append (args , "-n=2" , "-l=2" )
You can’t perform that action at this time.
0 commit comments