Skip to content

Commit

Permalink
midpoint-quick-pipeline: added BUILDER_CPU parameter with default 4
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed May 11, 2022
1 parent 816b553 commit befc021
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/jenkins/midpoint-quick-pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ podTemplate(
image: "${params.BUILDER_IMAGE ?: 'maven:3.8.5-openjdk-11-slim'}",
ttyEnabled: true,
command: 'cat',
resourceRequestCpu: '4',
resourceLimitCpu: '4',
resourceRequestCpu: "${params.BUILDER_CPU ?: '4'}",
resourceLimitCpu: "${params.BUILDER_CPU ?: '4'}",
resourceRequestMemory: '6Gi',
resourceLimitMemory: '6Gi') // by default -Xmx4g is set in main POM
]
Expand Down

0 comments on commit befc021

Please sign in to comment.