From 76bdb07a5ea72a7a42a1c3fecd392f27e82116fb Mon Sep 17 00:00:00 2001 From: Alexander Thomas Date: Thu, 6 Aug 2020 14:37:29 +0000 Subject: [PATCH] [infra] Tweak shards of AOT nnbd builders They were sometimes timing out, or close to the 60min execution timeout. Also moved the co19 nnbd tests with asserts to the end to ensure that is what is running on the local shard. This should reduce wasted capacity when waiting on shards (co19 with asserts is the slowest config). Change-Id: I18235f1f710190aaea2021a7923ec03e7c75b595 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/157489 Auto-Submit: Alexander Thomas Commit-Queue: William Hesse Reviewed-by: William Hesse --- tools/bots/test_matrix.json | 40 ++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/tools/bots/test_matrix.json b/tools/bots/test_matrix.json index 512d8a3a6db..8034a3f3cba 100644 --- a/tools/bots/test_matrix.json +++ b/tools/bots/test_matrix.json @@ -1338,24 +1338,6 @@ "dart_precompiled_runtime" ] }, - { - "name": "co19 nnbd tests in weak mode with asserts", - "arguments": [ - "-ndartkp-weak-asserts-${system}-${mode}-${arch}", - "co19" - ], - "fileset": "vm-kernel", - "shards": 3 - }, - { - "name": "co19 nnbd tests in strong mode", - "arguments": [ - "-ndartkp-strong-${system}-${mode}-${arch}", - "co19" - ], - "fileset": "vm-kernel", - "shards": 3 - }, { "name": "vm nnbd tests in weak mode with asserts", "arguments": [ @@ -1368,7 +1350,7 @@ "vm" ], "fileset": "vm-kernel", - "shards": 3 + "shards": 4 }, { "name": "vm nnbd tests in strong mode", @@ -1382,7 +1364,25 @@ "vm" ], "fileset": "vm-kernel", - "shards": 3 + "shards": 4 + }, + { + "name": "co19 nnbd tests in strong mode", + "arguments": [ + "-ndartkp-strong-${system}-${mode}-${arch}", + "co19" + ], + "fileset": "vm-kernel", + "shards": 4 + }, + { + "name": "co19 nnbd tests in weak mode with asserts", + "arguments": [ + "-ndartkp-weak-asserts-${system}-${mode}-${arch}", + "co19" + ], + "fileset": "vm-kernel", + "shards": 4 } ] },