From 660a091f411b0e56eae1a7840f936a33c333741f Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Fri, 17 May 2019 17:24:42 +0200 Subject: [PATCH] ci: increase codefresh memory limit to decrease flakyness of known big tests (#30472) Such tests are: ``` //packages/language-service/test:test //packages/bazel/test/ngc-wrapped:ngc_test ``` PR Close #30472 --- .codefresh/bazel.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codefresh/bazel.rc b/.codefresh/bazel.rc index 43b19f4b47..b75f7287e4 100644 --- a/.codefresh/bazel.rc +++ b/.codefresh/bazel.rc @@ -23,7 +23,7 @@ build --announce_rc # Bazel doesn't calculate the memory ceiling correctly when running under Docker. # Limit Bazel to consuming resources that fit in CodeFresh VMs # TODO(filipesilva): determine the correct memory limit -build --local_resources=8000,8.0,1.0 +build --local_resources=10240,8.0,1.0 # Retry in the event of flakes, eg. https://circleci.com/gh/angular/angular/31309 test --flaky_test_attempts=2