mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-03 06:09:46 +01:00
48 lines
1.4 KiB
Groovy
48 lines
1.4 KiB
Groovy
#!groovy
|
|
@Library('github.com/cloudogu/ces-build-lib@ac17d45')
|
|
import com.cloudogu.ces.cesbuildlib.*
|
|
|
|
node() { // No specific label
|
|
|
|
properties([
|
|
// Keep only the last 10 build to preserve space
|
|
buildDiscarder(logRotator(numToKeepStr: '10')),
|
|
// Don't run concurrent builds for a branch, because they use the same workspace directory
|
|
disableConcurrentBuilds()
|
|
])
|
|
|
|
String defaultEmailRecipients = env.EMAIL_SCM_RECIPIENTS
|
|
|
|
catchError {
|
|
|
|
Maven mvn = new MavenWrapper(this)
|
|
|
|
stage('Checkout') {
|
|
checkout scm
|
|
}
|
|
|
|
stage('Build') {
|
|
mvn 'clean install -DskipTests -DperformRelease'
|
|
archive '**/target/*.jar,**/target/*.zip'
|
|
}
|
|
|
|
stage('Unit Test') {
|
|
mvn 'test -Dsonia.scm.test.skip.hg=true'
|
|
}
|
|
|
|
stage('SonarQube') {
|
|
def sonarQube = new SonarQube(this, 'ces-sonar')
|
|
|
|
sonarQube.analyzeWith(mvn)
|
|
}
|
|
}
|
|
|
|
// Archive Unit and integration test results, if any
|
|
junit allowEmptyResults: true, testResults: '**/target/failsafe-reports/TEST-*.xml,**/target/surefire-reports/TEST-*.xml,**/target/jest-reports/TEST-*.xml'
|
|
|
|
// Find maven warnings and visualize in job
|
|
warnings consoleParsers: [[parserName: 'Maven']], canRunOnFailed: true
|
|
|
|
mailIfStatusChanged(defaultEmailRecipients)
|
|
}
|