From 3940a9ec29b763bdb73127cc4d9dbbe952b436b7 Mon Sep 17 00:00:00 2001 From: Mick Semb Wever Date: Fri, 27 Mar 2020 13:26:42 +0100 Subject: [PATCH] Jenkins 'Cassandra' label applied to the declarative pipeline patch by Mick Semb Wever; reviewed by David Capwell for CASSANDRA-15668 --- .jenkins/Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.jenkins/Jenkinsfile b/.jenkins/Jenkinsfile index 7d54f1155e..5af2b5adfe 100644 --- a/.jenkins/Jenkinsfile +++ b/.jenkins/Jenkinsfile @@ -24,7 +24,7 @@ // `curl -X POST -F "jenkinsfile=<.jenkins/Jenkinsfile" https://builds.apache.org/pipeline-model-converter/validate` pipeline { - agent any + agent { label 'cassandra' } stages { stage('Init') { steps { @@ -41,21 +41,21 @@ pipeline { stage('JVM DTests') { steps { warnError('Tests unstable') { - build job: "${env.JOB_NAME}-test-jvm-dtest-forking" + build job: "${env.JOB_NAME}-jvm-dtest" } } post { success { warnError('missing test xml files') { script { - copyTestResults('test-jvm-dtest-forking') + copyTestResults('jvm-dtest') } } } unstable { warnError('missing test xml files') { script { - copyTestResults('test-jvm-dtest-forking') + copyTestResults('jvm-dtest') } } }