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