bidon/Jenkinsfile

40 lines
1.2 KiB
Groovy

pipeline {
agent any
stages{
stage('unit test'){
steps{
sh 'tox -r'
}
}
stage('packaging'){
steps{
script {
if (env.BRANCH_NAME == 'master') {
sh 'echo "AAAA"'
}
}
}
}
}
post {
always {
junit 'test_results.xml'
script {
// Hack to have the 'jenkins build back to normal' mail sent
if (currentBuild.result == null) {
currentBuild.result = 'SUCCESS'
}
if (env.BRANCH_NAME == 'master') {
step([$class: 'Mailer', notifyEveryUnstableBuild: true,
recipients: "manukaz@gmail.com", sendToIndividuals: true])
} else {
step([$class: 'Mailer',
notifyEveryUnstableBuild: true,
recipients: emailextrecipients([[$class: 'CulpritsRecipientProvider'],
[$class: 'RequesterRecipientProvider']])])
}
}
}
}
}