Update Jenkinsfile

This commit is contained in:
Jessica Allaire 2020-03-30 15:34:54 -04:00 committed by GitHub
parent 9638347152
commit 5a73bc8bcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

13
Jenkinsfile vendored
View file

@ -8,18 +8,25 @@ pipeline {
}
stage('Test') {
steps {
//
bat 'make check'
}
}
stage('Package') {
steps {
//
echo 'Testing'
}
}
stage('Deploy') {
steps {
//
echo 'Deploy'
}
}
}
}
post {
failure {
mail to: 'jessica.allaire.96@hotmail.com',
subject: "Failed Pipeline: ${currentBuild.fullDisplayName}",
body: "Something is wrong with ${env.BUILD_URL}"
}
}