Skip to content

Commit fa9d72a

Browse files
authored
ci: reduce concurrency (#144)
Test are failing often randomly due to overloaded runners. Reduce the load. Signed-off-by: Francesco Canovai <[email protected]>
1 parent f1dedb1 commit fa9d72a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dagger/e2e/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ func (m *E2E) Run(
3434
WithMountedFile("/kubeconfig", kubeconfig).
3535
WithEnvVariable("KUBECONFIG", "/kubeconfig").
3636
WithExec([]string{"go", "run", "github.com/onsi/ginkgo/v2/ginkgo",
37-
"--procs=8",
37+
"--procs=4",
3838
"--randomize-all",
3939
"--randomize-suites",
4040
"--fail-on-pending",
4141
"--fail-on-empty",
4242
"--keep-going",
43-
"--timeout=30m",
43+
"--timeout=45m",
4444
"--github-output",
4545
"./test/e2e"}).Stdout(ctx)
4646
}

0 commit comments

Comments
 (0)