From 597a981b3afba53ee1b068292ede379847937487 Mon Sep 17 00:00:00 2001 From: Kritzzeal <123476661+Kritzzeal@users.noreply.github.com> Date: Wed, 4 Mar 2026 11:15:02 +0100 Subject: [PATCH 1/3] Add EOF marker to .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index d3b1c34c78..5b4cfe371e 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ buildNumber.properties # Avoid ignoring Maven wrapper jar file (.jar files are usually ignored) !/.mvn/wrapper/maven-wrapper.jar +#eof From 96abb7ab6be8b15fbca57d5a7a8e6af5548c49ee Mon Sep 17 00:00:00 2001 From: Kritzzeal <123476661+Kritzzeal@users.noreply.github.com> Date: Wed, 4 Mar 2026 11:16:24 +0100 Subject: [PATCH 2/3] Rename stage 'Complete' to 'Completed' and add 'CompleteTest' stage --- jenkins/Jenkinsfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/jenkins/Jenkinsfile b/jenkins/Jenkinsfile index 52eed25843..76dc6a188b 100644 --- a/jenkins/Jenkinsfile +++ b/jenkins/Jenkinsfile @@ -21,7 +21,12 @@ pipeline { sh './jenkins/scripts/deliver.sh' } } - stage('Complete') { + stage('Completed') { + steps { + echo 'Job Complete!' + } + } + stage('CompleteTest') { steps { echo 'Job Complete!' } From dbd9a9d9f1aa4f115621631c23927733bc78f496 Mon Sep 17 00:00:00 2001 From: Kritzzeal <123476661+Kritzzeal@users.noreply.github.com> Date: Wed, 4 Mar 2026 11:32:29 +0100 Subject: [PATCH 3/3] Add test line to README.md Add a test line to the README file. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 40efacc879..92a3221bd2 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,4 @@ The `jenkins` directory contains an example of the `Jenkinsfile` (i.e. Pipeline) you'll be creating yourself during the tutorial and the `scripts` subdirectory contains a shell script with commands that are executed when Jenkins processes the "Deliver" stage of your Pipeline. +Testline