mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-02-06 22:31:12 +00:00
11 lines
112 B
Text
11 lines
112 B
Text
|
|
pipeline {
|
||
|
|
agent any
|
||
|
|
stages {
|
||
|
|
stage('Build') {
|
||
|
|
steps {
|
||
|
|
echo 'Bulding'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|