We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f374c02 commit 3eec3a3Copy full SHA for 3eec3a3
Jenkinsfile
@@ -28,6 +28,7 @@ pipeline {
28
branch 'master'
29
branch 'release_*'
30
branch 'hotfix_release_*'
31
+ branch 'sonar_*'
32
allOf {
33
branch 'PR-*'
34
expression { env.CHANGE_BRANCH.startsWith("release_") }
@@ -55,6 +56,14 @@ pipeline {
55
56
sh 'mvn clean verify -U -P release-build'
57
}
58
59
+ stage('build-sonar') {
60
+ when {
61
62
+ }
63
+ steps {
64
+ sh 'mvn clean verify -U -P sonar-build'
65
66
67
stage('sonarcloud') {
68
when {
69
0 commit comments