Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ pipeline {
}
}
}

stage('SonarQube analysis') {
environment {
scannerHome = tool 'SonarQubeScanner'
Expand All @@ -87,6 +88,7 @@ pipeline {
scanCode()
}
}

stage('Publish[staging]') {
when {
not {
Expand Down Expand Up @@ -115,6 +117,7 @@ pipeline {
}
}
}

stage('Run Gauge tests') {
when {
not {
Expand Down Expand Up @@ -154,6 +157,19 @@ pipeline {
}
}
}

stage('Mend scan') {
when {
expression { env.BRANCH_IS_PRIMARY }
}
environment {
WS_PROJECTNAME="cloudant-${libName}-sdk"
}
steps {
mendScan()
}
}

stage('Update version and tag') {
when {
beforeAgent true
Expand Down