13 lines
211 B
Groovy
13 lines
211 B
Groovy
pipeline{
|
|
agent any
|
|
stages{
|
|
stage('Stage 1'){
|
|
steps{
|
|
echo 'Hello World!'
|
|
checkout: Check out from version control
|
|
sh: Shell Script
|
|
}
|
|
}
|
|
}
|
|
}
|