Skip to content

Commit 6e20ec7

Browse files
SQUASH – small fix
1 parent e4857ab commit 6e20ec7

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.jenkins/Jenkinsfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,10 @@ def fetchDockerImages(dockerfiles) {
500500
def getNodeLabel(command, cell) {
501501
def label = "cassandra-${cell.arch}-${command.size}"
502502
if (command.containsKey('benchmark') && command.benchmark) {
503-
//FIXME label = "${label}-dedicated"
503+
// to provide reliable results the "microbench" target
504+
// expects to be running on baremetal jenkins agents configured with only one executor
505+
// those jenkins agents need to be manually configured to have the "cassandra-amd64-large-dedicated" label
506+
label = "${label}-dedicated"
504507
}
505508
echo "using node label: ${label}"
506509
return label

.jenkins/k8s/jenkins-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ controller:
5858
- pipeline-rest-api
5959
- test-stability
6060
- copyartifact
61-
- jmh-plugin
61+
- jmh-report
6262
node-selector:
6363
cassandra.jenkins.controller: true
6464
scriptApproval:

0 commit comments

Comments
 (0)