mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-01-13 05:11:12 +00:00
11 lines
115 B
Groovy
11 lines
115 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages{
|
|
stage('Hello'){
|
|
steps {
|
|
echo 'Hello World'
|
|
}
|
|
}
|
|
}
|
|
}
|