Skip to content
Snippets Groups Projects
Commit 4f29c8e3 authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

fix syntax error

parent c9a1f307
No related branches found
No related tags found
No related merge requests found
......@@ -40,9 +40,11 @@ def call() {
triggers {
upstream parentJob
}
properties([disableConcurrentBuilds()])
properties([copyArtifactPermission('*')])
options { buildDiscarder(logRotator(numToKeepStr: '30', artifactNumToKeepStr: '10')) }
options {
disableConcurrentBuilds()
copyArtifactPermission('*')
buildDiscarder(logRotator(numToKeepStr: '30', artifactNumToKeepStr: '10'))
}
stages {
stage('build') {
......
......@@ -36,9 +36,11 @@ def call(String libraryName, ArrayList<String> dependencyList) {
pollSCM 'H/5 * * * *'
upstream dependencies
}
properties([disableConcurrentBuilds()])
properties([copyArtifactPermission('*')])
options { buildDiscarder(logRotator(numToKeepStr: '30', artifactNumToKeepStr: '10')) }
options {
disableConcurrentBuilds()
copyArtifactPermission('*')
buildDiscarder(logRotator(numToKeepStr: '30', artifactNumToKeepStr: '10'))
}
stages {
stage('build') {
......
......@@ -53,9 +53,11 @@ def call(ArrayList<String> dependencyList, String gitUrl='') {
pollSCM 'H/5 * * * *'
upstream dependencies
}
properties([disableConcurrentBuilds()])
properties([copyArtifactPermission('*')])
options { buildDiscarder(logRotator(numToKeepStr: '30', artifactNumToKeepStr: '10')) }
options {
disableConcurrentBuilds()
copyArtifactPermission('*')
buildDiscarder(logRotator(numToKeepStr: '30', artifactNumToKeepStr: '10'))
}
stages {
stage('build') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment