mirror of
https://github.com/x-tools-author/x-tools.git
synced 2025-09-15 15:28:40 +08:00
20 lines
493 B
Groovy
20 lines
493 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage("build & SonarQube analysis") {
|
|
agent any
|
|
steps {
|
|
withSonarQubeEnv('sq.lan.com') {
|
|
sh 'mvn clean package sonar:sonar'
|
|
}
|
|
}
|
|
}
|
|
stage("Quality Gate") {
|
|
steps {
|
|
timeout(time: 1, unit: 'HOURS') {
|
|
waitForQualityGate abortPipeline: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |