ium_444417/Jenkinsfile
2022-03-24 17:41:58 +01:00

21 lines
393 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"
}
}
}
}