mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-03 01:10:17 +01:00
61 lines
1.6 KiB
Groovy
61 lines
1.6 KiB
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
dir("Plan") {
|
|
script {
|
|
sh 'rm -rf builds'
|
|
sh './gradlew clean shadowJar --parallel'
|
|
}
|
|
}
|
|
archiveArtifacts artifacts: 'Plan/builds/*.jar', fingerprint: false
|
|
}
|
|
}
|
|
stage('Tests') {
|
|
steps {
|
|
dir("Plan") {
|
|
script {
|
|
try {
|
|
sh './gradlew test --parallel'
|
|
} finally {
|
|
junit '**/build/test-results/test/*.xml'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
stage('Checkstyle') {
|
|
steps {
|
|
dir("Plan") {
|
|
script {
|
|
sh './gradlew checkstyleMain checkstyleTest --parallel'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
stage('SonarQube analysis') {
|
|
steps {
|
|
dir("Plan") {
|
|
script {
|
|
withSonarQubeEnv() {
|
|
sh './gradlew sonarqube -Dsonar.organization=player-analytics-plan'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
dir("Plan") {
|
|
script {
|
|
sh './gradlew clean --parallel'
|
|
sh 'rm -rf builds'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|