From da8f5d5ae3994401912213aa509dc7612fe8de27 Mon Sep 17 00:00:00 2001 From: laskau Date: Fri, 26 Apr 2019 12:06:55 +0200 Subject: [PATCH] 12 --- Jenkinsfile | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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' + } } }