ium_s437622/Jenkinsfile

11 lines
149 B
Groovy

pipeline{
agent any
stages{
stage('Stage 1'){
steps{
echo 'Hello World!'
}
}
}
}