pl-1/Jenkinsfile

12 lines
164 B
Groovy

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