From 575df97c52b2ad884d85db57ac87a78cdc676ce4 Mon Sep 17 00:00:00 2001 From: Ramzi El-Yafi Date: Fri, 13 Dec 2019 10:08:51 +0000 Subject: [PATCH] Mark integration test tasks with "big" node taint --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index 5f1ae94300..ff3b1f3eb4 100644 --- a/build.gradle +++ b/build.gradle @@ -606,6 +606,7 @@ task allParallelIntegrationTest(type: ParallelTestGroup) { coresPerFork 5 memoryInGbPerFork 12 distribute DistributeTestsBy.METHOD + nodeTaints "big" } task allParallelUnitTest(type: ParallelTestGroup) { podLogLevel PodLogLevel.INFO @@ -624,6 +625,7 @@ task allParallelUnitAndIntegrationTest(type: ParallelTestGroup) { coresPerFork 6 memoryInGbPerFork 10 distribute DistributeTestsBy.METHOD + nodeTaints "big" } task parallelRegressionTest(type: ParallelTestGroup) { testGroups "test", "integrationTest", "slowIntegrationTest", "smokeTest" @@ -632,6 +634,7 @@ task parallelRegressionTest(type: ParallelTestGroup) { coresPerFork 6 memoryInGbPerFork 10 distribute DistributeTestsBy.METHOD + nodeTaints "big" } task allParallelSmokeTest(type: ParallelTestGroup) { testGroups "slowIntegrationTest", "smokeTest" @@ -640,6 +643,7 @@ task allParallelSmokeTest(type: ParallelTestGroup) { coresPerFork 6 memoryInGbPerFork 10 distribute DistributeTestsBy.CLASS + nodeTaints "big" } apply plugin: 'com.r3.testing.distributed-testing' apply plugin: 'com.r3.testing.image-building'