From fa9d72a64e160f2087f313cd771913f950434587 Mon Sep 17 00:00:00 2001 From: Francesco Canovai Date: Tue, 28 Jan 2025 11:19:40 +0100 Subject: [PATCH] ci: reduce concurrency (#144) 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) }