ci: reduce concurrency (#144)

Test are failing often randomly due to overloaded runners. Reduce the
load.

Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>
This commit is contained in:
Francesco Canovai 2025-01-28 11:19:40 +01:00 committed by GitHub
parent f1dedb16ba
commit fa9d72a64e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,13 +34,13 @@ func (m *E2E) Run(
WithMountedFile("/kubeconfig", kubeconfig).
WithEnvVariable("KUBECONFIG", "/kubeconfig").
WithExec([]string{"go", "run", "github.com/onsi/ginkgo/v2/ginkgo",
"--procs=8",
"--procs=4",
"--randomize-all",
"--randomize-suites",
"--fail-on-pending",
"--fail-on-empty",
"--keep-going",
"--timeout=30m",
"--timeout=45m",
"--github-output",
"./test/e2e"}).Stdout(ctx)
}