From df87a61a2a3cb4dfd5b9e74d1a5daab37f0d5505 Mon Sep 17 00:00:00 2001 From: CloudGithub1 <106178216+CloudGithub1@users.noreply.github.com> Date: Mon, 18 Jul 2022 00:26:18 +0530 Subject: [PATCH 1/2] commit --- 008-form wave animation/jenkinsfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 008-form wave animation/jenkinsfile diff --git a/008-form wave animation/jenkinsfile b/008-form wave animation/jenkinsfile new file mode 100644 index 0000000..9d5879d --- /dev/null +++ b/008-form wave animation/jenkinsfile @@ -0,0 +1,20 @@ +pipeline { + agent any + stages { + stage('git clone') { + steps { + git credentialsId: 'db19ea6c-0005-4434-b2f8-02385c2dccce', url: 'git@github.com:CloudGithub1/html-css-javascript-projects.git' + } + } + stage('Test') { + steps { + echo "we are good to go" + } + } + stage('Deploy') { + steps { + echo "will try our best" + } + } + } +} From e67f65b5c2d5489c2e254b8c46998c522b284fea Mon Sep 17 00:00:00 2001 From: CloudGithub1 <106178216+CloudGithub1@users.noreply.github.com> Date: Mon, 18 Jul 2022 00:51:29 +0530 Subject: [PATCH 2/2] commit --- 008-form wave animation/jenkinsfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/008-form wave animation/jenkinsfile b/008-form wave animation/jenkinsfile index 9d5879d..97d9fd9 100644 --- a/008-form wave animation/jenkinsfile +++ b/008-form wave animation/jenkinsfile @@ -6,14 +6,15 @@ pipeline { git credentialsId: 'db19ea6c-0005-4434-b2f8-02385c2dccce', url: 'git@github.com:CloudGithub1/html-css-javascript-projects.git' } } - stage('Test') { + stage('install httpd') { steps { - echo "we are good to go" + sh ' yum install httpd -y ' + sh ' service start httpd ' } } stage('Deploy') { steps { - echo "will try our best" + echo "dvjkhbvkh" } } }