You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by mc...@apache.org on 2020/10/13 08:31:18 UTC

[cassandra-builds] branch master updated: In jenkins, switch to use "priorityJobProperty { priority(X) }" property.

This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cassandra-builds.git


The following commit(s) were added to refs/heads/master by this push:
     new 848a382  In jenkins, switch to use "priorityJobProperty { priority(X) }" property.
848a382 is described below

commit 848a382ed493bec4bdd106e445383c8948159a78
Author: Mick Semb Wever <mc...@apache.org>
AuthorDate: Tue Oct 13 10:04:35 2020 +0200

    In jenkins, switch to use "priorityJobProperty { priority(X) }" property.
---
 jenkins-dsl/cassandra_job_dsl_seed.groovy | 55 ++++++++++++++++++++++++-------
 1 file changed, 44 insertions(+), 11 deletions(-)

diff --git a/jenkins-dsl/cassandra_job_dsl_seed.groovy b/jenkins-dsl/cassandra_job_dsl_seed.groovy
index 320e75f..73129cc 100644
--- a/jenkins-dsl/cassandra_job_dsl_seed.groovy
+++ b/jenkins-dsl/cassandra_job_dsl_seed.groovy
@@ -109,7 +109,10 @@ matrixJob('Cassandra-template-artifacts') {
     }
     properties {
         githubProjectUrl(githubRepo)
-        priorityJobProperty { priority(1) }
+        priorityJobProperty {
+            useJobPriority(true)
+            priority(1)
+        }
     }
     scm {
         git {
@@ -199,7 +202,10 @@ job('Cassandra-template-test') {
     }
     properties {
         githubProjectUrl(githubRepo)
-        priorityJobProperty { priority(3) }
+        priorityJobProperty {
+            useJobPriority(true)
+            priority(3)
+        }
     }
     scm {
         git {
@@ -275,7 +281,10 @@ matrixJob('Cassandra-template-dtest-matrix') {
     }
     properties {
         githubProjectUrl(githubRepo)
-        priority(7)
+        priorityJobProperty {
+            useJobPriority(true)
+            priority(7)
+        }
     }
     scm {
         git {
@@ -361,7 +370,10 @@ matrixJob('Cassandra-template-cqlsh-tests') {
     childCustomWorkspace('.')
     properties {
         githubProjectUrl(githubRepo)
-        priorityJobProperty { priority(3) }
+        priorityJobProperty {
+            useJobPriority(true)
+            priority(3)
+        }
     }
     scm {
         git {
@@ -540,7 +552,10 @@ cassandraBranches.each {
         }
         properties {
             githubProjectUrl(githubRepo)
-            priorityJobProperty { priority(1) }
+            priorityJobProperty {        
+                useJobPriority(true)
+                priority(1)
+            }
         }
         definition {
             cpsScm {
@@ -597,7 +612,10 @@ matrixJob('Cassandra-devbranch-artifacts') {
     }
     properties {
         githubProjectUrl(githubRepo)
-        priorityJobProperty { priority(1) }
+        priorityJobProperty {
+            useJobPriority(true)
+            priority(1)
+        }
     }
     scm {
         git {
@@ -673,7 +691,10 @@ testTargets.each {
         }
         properties {
             githubProjectUrl(githubRepo)
-            priorityJobProperty { priority(3) }
+            priorityJobProperty {
+                useJobPriority(true)
+                priority(3)
+            }
         }
         scm {
             git {
@@ -782,7 +803,10 @@ dtestTargets.each {
         }
         properties {
             githubProjectUrl(githubRepo)
-            priority(6)
+            priorityJobProperty {
+                useJobPriority(true)
+                priority(6)
+            }
         }
         scm {
             git {
@@ -875,7 +899,10 @@ matrixJob('Cassandra-devbranch-cqlsh-tests') {
     childCustomWorkspace('.')
     properties {
         githubProjectUrl(githubRepo)
-        priorityJobProperty { priority(3) }
+        priorityJobProperty {
+            useJobPriority(true)
+            priority(3)
+        }
     }
     scm {
         git {
@@ -937,7 +964,10 @@ pipelineJob('Cassandra-devbranch') {
     }
     properties {
         githubProjectUrl(githubRepo)
-        priorityJobProperty { priority(1) }
+        priorityJobProperty {
+            useJobPriority(true)
+            priority(1)
+        }
     }
     definition {
         cps {
@@ -970,7 +1000,10 @@ job('cassandra-website') {
     }
     properties {
         githubProjectUrl('https://github.com/apache/cassandra-website/')
-        priorityJobProperty { priority(1) }
+        priorityJobProperty {
+            useJobPriority(true)
+            priority(1)
+        }
     }
     scm {
         git {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org