JenkinsFILE

This commit is contained in:
RolandBakunts 2023-01-16 09:46:43 -08:00
parent 45b0320312
commit ffae14e3d3

6
Jenkinsfile vendored
View file

@ -7,11 +7,7 @@ pipeline {
stages {
stage('Build') {
steps {
sh 'java -version'
withGradle(){
sh './gradlew -version'
sh './gradlew clean build --no-daemon'
}
sh './gradlew build --no-daemon'
archiveArtifacts artifacts: './build/libs/reports/checkstyle/main.html'
}
}