From 87e271d08409332d9400e00fe36f8ac5f7ef0c37 Mon Sep 17 00:00:00 2001 From: Robert Schumann Date: Tue, 9 Aug 2022 21:16:23 +0200 Subject: [PATCH] fix: disable concurrent builds --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index e45c2df..9339fed 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,6 +9,7 @@ DOCKER_REGISTRY = 'registry.n-os.org:5000' properties([ + disableConcurrentBuilds(), parameters([ booleanParam(name: 'SKIP_TESTS', defaultValue: false, description: 'Do you want to run the build with tests?') ]) @@ -114,7 +115,6 @@ String getDockerTag() { void setBuildStatus(message, state) { def repoUrl = sh(script: 'git config --get remote.origin.url', returnStdout: true).trim() - echo repoUrl step([ $class: "GitHubCommitStatusSetter", reposSource: [$class: "ManuallyEnteredRepositorySource", url: repoUrl],