diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..b886f8f --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,26 @@ +pipeline { + agent any + stages { + stage('clonegit') { + steps { + git(url: 'https://github.com/darealmc/some_java.git', branch: 'pipeline') + } + } + + stage('') { + steps { + withAnt(installation: 'ant_1') { + sh 'ant clean junit' + } + + } + } + + stage('testing') { + steps { + junit 'test/results/*.xml' + } + } + + } +} \ No newline at end of file