12
This commit is contained in:
parent
12ae9cf6e2
commit
da8f5d5ae3
16
Jenkinsfile
vendored
16
Jenkinsfile
vendored
@ -11,12 +11,26 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Run') {
|
stage('Git checkout') {
|
||||||
steps{
|
steps{
|
||||||
sh 'git checkout'
|
sh 'git checkout'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('run script') {
|
||||||
|
steps{
|
||||||
sh 'sh test.sh text.txt out.txt'
|
sh 'sh test.sh text.txt out.txt'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
junit 'build/reports/out.txt'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user