Fix 3 Jenkinsfile

This commit is contained in:
s416178 2020-04-03 11:38:08 +02:00
parent 8829f34c77
commit 8d70f6f028

4
Jenkinsfile vendored
View File

@ -14,13 +14,13 @@ pipeline {
}
stage('sh: Shell Script') {
steps {
sh('chmod +x ./shell_script.sh')
sh chmod +x ./shell_script.sh
sh('./shell_script.sh')
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts './result.log'
archiveArtifacts 'result.log'
}
}
}