diff --git a/Jenkinsfile b/Jenkinsfile index f19cab5..d33bb01 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,12 +11,26 @@ pipeline { } } - stage('Run') { + stage('Git checkout') { steps{ sh 'git checkout' + } + } + + stage('run script') { + steps{ sh 'sh test.sh text.txt out.txt' } } + + + + } + + post { + always { + junit 'build/reports/out.txt' + } } }