This is an automated email from the ASF dual-hosted git repository. tsato pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push: new 5abae3b31 fix(e2e): relax constraints for builder kit full build test 5abae3b31 is described below commit 5abae3b3127c84278759781dd73ba6245d153711 Author: Tadayoshi Sato <sato.tadayo...@gmail.com> AuthorDate: Fri Sep 2 17:06:19 2022 +0900 fix(e2e): relax constraints for builder kit full build test --- e2e/global/builder/build_test.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/e2e/global/builder/build_test.go b/e2e/global/builder/build_test.go index 7a379ae2e..b69265d84 100644 --- a/e2e/global/builder/build_test.go +++ b/e2e/global/builder/build_test.go @@ -41,7 +41,7 @@ type kitOptions struct { } func TestKitTimerToLogFullBuild(t *testing.T) { - doKitFullBuild(t, "timer-to-log", "300Mi", "5m0s", TestTimeoutLong, kitOptions{ + doKitFullBuild(t, "timer-to-log", "500Mi", "8m0s", TestTimeoutLong, kitOptions{ dependencies: []string{ "camel:timer", "camel:log", }, @@ -49,7 +49,7 @@ func TestKitTimerToLogFullBuild(t *testing.T) { } func TestKitKnativeFullBuild(t *testing.T) { - doKitFullBuild(t, "knative", "300Mi", "5m0s", TestTimeoutLong, kitOptions{ + doKitFullBuild(t, "knative", "500Mi", "8m0s", TestTimeoutLong, kitOptions{ dependencies: []string{ "camel-k-knative", }, @@ -72,7 +72,8 @@ func TestKitTimerToLogFullNativeBuild(t *testing.T) { }) } -func doKitFullBuild(t *testing.T, name string, memoryLimit string, buildTimeout string, testTimeout time.Duration, options kitOptions) { +func doKitFullBuild(t *testing.T, name string, memoryLimit string, buildTimeout string, testTimeout time.Duration, + options kitOptions) { t.Helper() WithNewTestNamespace(t, func(ns string) {