conditional/Jenkinsfile

30 lines
926 B
Text
Raw Normal View History

2018-02-22 22:37:51 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
checkout([
$class: 'GitSCM',
branches: [[name: '**']],
extensions: [[$class: 'CleanBeforeCheckout']],
userRemoteConfigs: [[credentialsId: 'github-kemitix', url: 'git@github.com:kemitix/conditional.git']]
])
sh './mvnw clean install'
junit '**/target/surefire-reports/*.xml'
archiveArtifacts '**/target/*.jar'
}
}
stage('Publish Coverage') {
steps {
sh 'bash <(curl -s https://codecov.io/bash)'
sh './mvnw test jacoco:report coveralls:report'
}
}
stage('Deploy') {
steps {
sh './mvnw -Dskip-Tests=true -P release -B deploy'
}
}
2018-02-22 22:37:51 +00:00
}
}