fixed error in Jenkinsfile
authorErik Brakkee <erik@brakkee.org>
Sun, 10 Nov 2024 17:18:53 +0000 (18:18 +0100)
committerErik Brakkee <erik@brakkee.org>
Sun, 10 Nov 2024 17:18:53 +0000 (18:18 +0100)
Jenkinsfile

index 413811dc0625fad25c772f6040dcfecec12623fe..ac5cf5754a30c5fac0c530ce0619ff97dbda976c 100644 (file)
@@ -4,6 +4,9 @@ String cron_string = BRANCH_NAME == "master" ? "10 3 * * *" : ""
 pipeline {
   agent {
     kubernetes agentsetup(containers: 'java8') 
+  }
+  options {
+    disableConcurrentBuilds()
     buildDiscarder(logRotator(
             numToKeepStr: '5',            // Number of build records to keep
             artifactNumToKeepStr: '3',    // Number of builds for which to keep artifacts
@@ -11,9 +14,6 @@ pipeline {
             artifactDaysToKeepStr: '15'   // Days to keep artifacts
         ))
   }
-  options {
-    disableConcurrentBuilds()
-  }
   triggers { cron(cron_string) }
   
   stages {