From bb0dc08db544802dcb0f370b33046984fdcda9fe Mon Sep 17 00:00:00 2001 From: charles Date: Sat, 20 Jan 2024 08:57:29 +0000 Subject: [PATCH 1/4] added 1 to READme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b8ad8a94..fce126fb 100644 --- a/README.md +++ b/README.md @@ -57,4 +57,4 @@ Architecture Note ---- -The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client. +The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client.1 From a6703e64826a7565758700c43b20e70b51a8e7cb Mon Sep 17 00:00:00 2001 From: TaylorBree Date: Sat, 20 Jan 2024 09:21:29 +0000 Subject: [PATCH 2/4] added remove this to READme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fce126fb..664e9980 100644 --- a/README.md +++ b/README.md @@ -57,4 +57,4 @@ Architecture Note ---- -The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client.1 +The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client.remove this From 8b08e263bd53fb0baab88a15adbf43003bb77bdc Mon Sep 17 00:00:00 2001 From: TaylorBree Date: Sat, 20 Jan 2024 09:27:32 +0000 Subject: [PATCH 3/4] added 1 to READme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 664e9980..fce126fb 100644 --- a/README.md +++ b/README.md @@ -57,4 +57,4 @@ Architecture Note ---- -The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client.remove this +The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client.1 From dfc8bba29d60cc54d3bfd6a08fe4cb293ea5d07a Mon Sep 17 00:00:00 2001 From: TaylorBree Date: Sat, 20 Jan 2024 11:29:12 +0000 Subject: [PATCH 4/4] created a Jenkinsfile --- Jenkinsfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..daa8063f --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,30 @@ +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.' + } + } +}