diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..e1f750a --- /dev/null +++ b/Jenkinsfile @@ -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' + } + } + } + +} +