ium_444417/Jenkinsfile
2022-03-24 17:43:23 +01:00

22 lines
437 B
Groovy

pipeline {
agent any
stages {
stage("Hello") {
steps {
echo "Start.."
}
}
stage("Check out from version control") {
steps {
checkout scm
}
}
stage("Shell Script") {
steps {
sh "chmod u+x ./startscript.sh"
archiveArtifacts 'data.txt'
}
}
}
}