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 8b7249b commit 1b52784Copy full SHA for 1b52784
Jenkinsfile
@@ -64,6 +64,7 @@ pipeline {
64
}
65
66
67
+
68
stage('SonarQube analysis') {
69
environment {
70
scannerHome = tool 'SonarQubeScanner'
@@ -87,6 +88,7 @@ pipeline {
87
88
scanCode()
89
90
91
92
stage('Publish[staging]') {
93
when {
94
not {
@@ -115,6 +117,7 @@ pipeline {
115
117
116
118
119
120
121
stage('Run Gauge tests') {
122
123
@@ -154,6 +157,19 @@ pipeline {
154
157
155
158
156
159
160
161
+ stage('Mend scan') {
162
+ when {
163
+ expression { env.BRANCH_IS_PRIMARY }
164
+ }
165
+ environment {
166
+ WS_PROJECTNAME="cloudant-${libName}-sdk"
167
168
+ steps {
169
+ mendScan()
170
171
172
173
stage('Update version and tag') {
174
175
beforeAgent true
0 commit comments