ium_444417/Jenkinsfile
2022-03-24 17:40:59 +01:00

19 lines
355 B
Groovy

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