From 3c87f0c0718937fd9c255d6aa69db9182e316b2c Mon Sep 17 00:00:00 2001 From: oerm Date: Thu, 25 Jun 2026 12:27:24 +0100 Subject: [PATCH 1/3] README.md --- worker/README.md | 2 ++ worker/pom.xml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/worker/README.md b/worker/README.md index 834be372..b2f68f68 100644 --- a/worker/README.md +++ b/worker/README.md @@ -3,3 +3,5 @@ [![Build Status](http://35.197.102.152:8080/buildStatus/icon?job=job-01)](http://35.197.102.152:8080/job/job-01/) [![Build Status](http://35.197.102.152:8080/buildStatus/icon?job=job-02&subject=UnitTest)](http://35.197.102.152:8080/job/job-02/) + + diff --git a/worker/pom.xml b/worker/pom.xml index c0c97644..eb736545 100644 --- a/worker/pom.xml +++ b/worker/pom.xml @@ -1,3 +1,4 @@ + @@ -102,3 +103,5 @@ + + From d029fd327b145fb8c9d949a2c958d5db17e88d79 Mon Sep 17 00:00:00 2001 From: oerm Date: Thu, 25 Jun 2026 14:31:03 +0100 Subject: [PATCH 2/3] This is the pull commit --- worker/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/worker/README.md b/worker/README.md index b2f68f68..fe3a3653 100644 --- a/worker/README.md +++ b/worker/README.md @@ -5,3 +5,5 @@ + + From 0dcd32cef58195db0e047aeb6b71b059bd3a9f25 Mon Sep 17 00:00:00 2001 From: oerm Date: Thu, 25 Jun 2026 15:45:10 +0100 Subject: [PATCH 3/3] This is the Jenkins file update --- Jenkinsfile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..5b5923bc --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,34 @@ +pipeline{ + + agent any + + stages{ + stage("one"){ + steps{ + echo 'step 1' + sleep 3 + } + } + + stage("two"){ + steps{ + echo 'step 2' + sleep 9 + } + + } + stage("three"){ + steps{ + echo 'step 3' + sleep 5 + } + } + + } + + post{ + always{ + echo 'This pipeline is completed' + } + } +}