From 7435accea02be4c16d933956634d41ad4023feee Mon Sep 17 00:00:00 2001 From: Francesco Canovai Date: Mon, 27 Jan 2025 11:50:43 +0100 Subject: [PATCH] ci: reduce concurrency Test are failing often randomly due to overloaded runners. Reduce the load. Signed-off-by: Francesco Canovai --- dagger/e2e/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dagger/e2e/main.go b/dagger/e2e/main.go index c997d35..d728ce0 100644 --- a/dagger/e2e/main.go +++ b/dagger/e2e/main.go @@ -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) }