From: Philipp Dallig Date: Mon, 15 May 2017 12:32:42 +0000 (+0200) Subject: Remove deprecation in Jenkinsfile X-Git-Tag: v0.1.0~3003 X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=a583a199f465a1339177ae2d193d4e4e07d2847e;p=pixelpark%2Fhiera.git Remove deprecation in Jenkinsfile --- diff --git a/Jenkinsfile b/Jenkinsfile index eefb88f7..66ad20d8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,8 +1,8 @@ -stage 'Yaml-Linter' - -node("mesos") { - deleteDir() - git credentialsId: 'd1d6ad59-8d5a-45b4-acfb-64a36d7fd8cd', url: 'git@git.pixelpark.com:puppet/hiera.git', branch: "${BRANCH_NAME}" - sh '/bin/yum install -y yamllint' - sh '/usr/bin/yamllint -c yamllint.config .' +stage 'Yaml-Linter' { + node("mesos") { + deleteDir() + git credentialsId: 'd1d6ad59-8d5a-45b4-acfb-64a36d7fd8cd', url: 'git@git.pixelpark.com:puppet/hiera.git', branch: "${BRANCH_NAME}" + sh '/bin/yum install -y yamllint' + sh '/usr/bin/yamllint -c yamllint.config .' + } }