diff --git a/008-form wave animation/jenkinsfile b/008-form wave animation/jenkinsfile new file mode 100644 index 0000000..97d9fd9 --- /dev/null +++ b/008-form wave animation/jenkinsfile @@ -0,0 +1,21 @@ +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('install httpd') { + steps { + sh ' yum install httpd -y ' + sh ' service start httpd ' + } + } + stage('Deploy') { + steps { + echo "dvjkhbvkh" + } + } + } +}