diff --git a/Jenkinsfile b/Jenkinsfile index 776862b7f..b9822500b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,22 +2,20 @@ pipeline { agent any stages { - stage('git') { + stage('Build') { steps { - git branch: '', url: 'https://github.com/Ramesh05/spring-petclinic.git' + echo 'Building..' } } - stage('build') { + stage('Test') { steps { + echo 'Testing..' } } - stage('test') { + stage('Deploy') { steps { - } - } - stage('deploy') { - steps { - } - } + echo 'Deploying....' + } } } +}