Second Commit Jenkins

This commit is contained in:
ichbinGaurav 2024-01-03 00:02:28 +01:00
parent 4670611dc5
commit 0e4a2fa7b5

37
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,37 @@
pipeline {
agent any
stages {
stage('1. Clean') {
steps {
bat 'ant clean'
}
}
stage('2. Build') {
steps {
bat 'ant build'
}
}
stage('3. Test') {
steps {
bat 'ant Main_classTest'
}
}
stage('4. Mutation') {
steps {
bat 'ant pit'
}
}
stage('5. bugs') {
steps {
bat 'ant spotbugs'
}
}
}
}