Merge pull request #5810 from corda/ramzi/TM-140

Mark integration test tasks with "big" node taint
This commit is contained in:
Stefano Franz 2019-12-13 15:09:15 +00:00 committed by GitHub
commit c65497ee4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -623,6 +623,7 @@ task allParallelIntegrationTest(type: ParallelTestGroup) {
coresPerFork 5 coresPerFork 5
memoryInGbPerFork 12 memoryInGbPerFork 12
distribute DistributeTestsBy.METHOD distribute DistributeTestsBy.METHOD
nodeTaints "big"
} }
task allParallelUnitTest(type: ParallelTestGroup) { task allParallelUnitTest(type: ParallelTestGroup) {
podLogLevel PodLogLevel.INFO podLogLevel PodLogLevel.INFO
@ -641,6 +642,7 @@ task allParallelUnitAndIntegrationTest(type: ParallelTestGroup) {
coresPerFork 6 coresPerFork 6
memoryInGbPerFork 10 memoryInGbPerFork 10
distribute DistributeTestsBy.METHOD distribute DistributeTestsBy.METHOD
nodeTaints "big"
} }
task parallelRegressionTest(type: ParallelTestGroup) { task parallelRegressionTest(type: ParallelTestGroup) {
testGroups "test", "integrationTest", "slowIntegrationTest", "smokeTest" testGroups "test", "integrationTest", "slowIntegrationTest", "smokeTest"
@ -649,6 +651,7 @@ task parallelRegressionTest(type: ParallelTestGroup) {
coresPerFork 6 coresPerFork 6
memoryInGbPerFork 10 memoryInGbPerFork 10
distribute DistributeTestsBy.METHOD distribute DistributeTestsBy.METHOD
nodeTaints "big"
} }
task allParallelSmokeTest(type: ParallelTestGroup) { task allParallelSmokeTest(type: ParallelTestGroup) {
testGroups "slowIntegrationTest", "smokeTest" testGroups "slowIntegrationTest", "smokeTest"
@ -657,6 +660,7 @@ task allParallelSmokeTest(type: ParallelTestGroup) {
coresPerFork 6 coresPerFork 6
memoryInGbPerFork 10 memoryInGbPerFork 10
distribute DistributeTestsBy.CLASS distribute DistributeTestsBy.CLASS
nodeTaints "big"
} }
apply plugin: 'com.r3.testing.distributed-testing' apply plugin: 'com.r3.testing.distributed-testing'
apply plugin: 'com.r3.testing.image-building' apply plugin: 'com.r3.testing.image-building'