19 lines
355 B
Groovy
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"
|
|
}
|
|
}
|
|
} |