Demo/Jenkinsfile
2024-01-06 19:43:36 +00:00

11 lines
117 B
Groovy

pipeline {
agent any
stages {
stage
{
echo "Hello World"
}
}
}