From 9ada60cdd28b6a3994e3bbb0f2143febe185ff8a Mon Sep 17 00:00:00 2001 From: idvylyuk Date: Tue, 26 Nov 2024 14:37:30 +0200 Subject: [PATCH 1/2] build: added Jenkinsfile --- Jenkinsfile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..bc7b63772 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,34 @@ +pipeline{ + agent{ + label "ubuntu-agent" + } + stages{ + stage("A"){ + steps{ + echo "========executing A========" + } + post{ + always{ + echo "========always========" + } + success{ + echo "========A executed successfully========" + } + failure{ + echo "========A execution failed========" + } + } + } + } + post{ + always{ + echo "========always========" + } + success{ + echo "========pipeline executed successfully ========" + } + failure{ + echo "========pipeline execution failed========" + } + } +} \ No newline at end of file From 7f5e2c5a0f32da99ab77ef7c6354ba4b3aa27022 Mon Sep 17 00:00:00 2001 From: Ivan Dvylyuk Date: Tue, 26 Nov 2024 18:17:27 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cdb60e276..eb870ca84 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/spring-projects/spring-petclinic) [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?hide_repo_select=true&ref=main&repo=7517918) -## Understanding the Spring Petclinic application with a few diagrams +## Understanding the Spring Petclinic application with a few diagrams [See the presentation here](https://speakerdeck.com/michaelisvy/spring-petclinic-sample-application)