{"id":29137,"date":"2021-06-04T16:54:49","date_gmt":"2021-06-04T16:54:49","guid":{"rendered":"https:\/\/app14743.cloudwayssites.com\/?p=29137"},"modified":"2023-12-01T10:07:58","modified_gmt":"2023-12-01T18:07:58","slug":"what-is-jenkins-how-to-use-jenkins-ci-testing","status":"publish","type":"post","link":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/","title":{"rendered":"What is Jenkins? How to Use Jenkins for CI\/CD and Testing"},"content":{"rendered":"\n<p>Jenkins is a popular open source automation server. It\u2019s used to implement Continuous Integration (CI) and Continuous Delivery (CD) for any development project.<\/p>\n\n\n\n<p>CI\/CD, a key component of a <a href=\"https:\/\/en.wikipedia.org\/wiki\/DevOps\">DevOps<\/a> strategy, allows you to shorten the development lifecycle while maintaining quality by automating tasks like testing. In short, a successful implementation will help you test more often and deploy faster with high quality.&nbsp;<\/p>\n\n\n\n<p>Jenkins, as a Java-based CI server with strong community support and a huge plugin ecosystem, is a powerful tool for anyone looking to add CI\/CD to their project.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-history-of-jenkins\">History of Jenkins<\/h2>\n\n\n\n<p>Jenkins has a long history, stretching back to 2011, and its roots extend back even further to 2004. That was the year that Kohsuke Kawaguchi, a Java developer at Sun Microsystems, built an automation tool to help him answer the question of whether his code would break the build before he committed it. The open source tool he built, called Hudson, automated tests and builds and helped him understand whether his code would work much sooner.&nbsp;<\/p>\n\n\n\n<p>In 2011, there was an issue between Oracle (which had acquired Sun Microsystems) and the open source project\u2019s community, and the community created a fork named Jenkins. For a while both projects were updated independently, but Jenkins proved to be more popular and Hudson is no longer developed.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-does-jenkins-do\">What Does Jenkins Do?<\/h2>\n\n\n\n<p>Jenkins helps you automate tasks for CI\/CD. Once the Jenkins server is configured, you will be able to execute a series of automated tests and builds so that your code is always up to date and valid. Implementing CI\/CD through a tool like Jenkins can greatly simplify the process of ensuring a high level of code quality and successful builds. It&#8217;s particularly powerful when large development teams are working on a single project, as traditional methods can result in a lot of conflicting code commits that require complex troubleshooting.<\/p>\n\n\n\n<p>Before we dive further into the functionality of Jenkins, let\u2019s take a moment to define continuous integration\/delivery. Then we\u2019ll discuss how Jenkins helps you achieve it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-is-continuous-integration-and-continuous-delivery-ci-cd\">What is Continuous Integration and Continuous Delivery (CI\/CD)?<\/h2>\n\n\n\n<p>CI is a process that enables you to integrate code changes from multiple developers working on a single project quickly and repeatedly. When a developer commits code, it can immediately be tested. If the tests pass, the code can be integrated into the build, which can similarly be tested and immediately verified.&nbsp;<\/p>\n\n\n\n<p>Automated tests are typically used alongside automated builds so that the process can be fast, effective and easily repeatable.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-does-jenkins-help-with-automated-testing\">How Does Jenkins Help with Automated Testing?<\/h2>\n\n\n\n<p>Using Jenkins to implement a CI\/CD process can dramatically improve your ability to test and ship a high quality product.&nbsp;<\/p>\n\n\n\n<p>One of the chief benefits is the ability to rapidly discover and fix bugs. If newly committed code introduces a defect into the build, not only is it caught immediately, but it is easy to know whose code caused the error. The problematic code can then be isolated, updated and recommitted quickly.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-getting-started-with-jenkins-and-jenkins-pipeline\">Getting Started with Jenkins and Jenkins Pipeline<\/h2>\n\n\n\n<p>The Jenkins CI server can be run as a standalone application with a built-in Java servlet container, or as a servlet in other Java servlet containers such as Apache Tomcat.<\/p>\n\n\n\n<p>The most popular way to manage CI\/CD with Jenkins is through Jenkins Pipeline, which is a suite of plugins that help you integrate continuous delivery pipelines in Jenkins. Essentially, a Pipeline is a linked series of automated steps to be executed by Jenkins. Jenkins Pipelines are implemented in code which can be committed, so that it can be versioned and reviewed along with the rest of your code.<\/p>\n\n\n\n<p>Here\u2019s an example (from the <a href=\"https:\/\/www.jenkins.io\/doc\/book\/pipeline\/\">Jenkins docs<\/a>) of a CD scenario modeled in Jenkins Pipeline:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/4X9yRd0sB1D8tMAAWCn0c-wAt0hdyoszpWi9QRTegIN4tjhZ-gKndzK4Rqfv8Q-lTk-MT88InBuVaXgG9LfDGstNYzQ8Lal0CjrV4_e1NJo_hgAxXaBM58tOnBLxOreUSe90OMYXHUCgRkkFhw\" alt=\"A Jenkins Pipeline modeling continuous delivery, starting with development on the left and ending with production on the right.\"\/><\/figure>\n\n\n\n<p>Pipelines can be written <a href=\"https:\/\/www.jenkins.io\/doc\/book\/pipeline\/getting-started\/#defining-a-pipeline-in-scm\">manually<\/a> or through the newer <a href=\"https:\/\/www.jenkins.io\/doc\/book\/pipeline\/getting-started\/#through-blue-ocean\">Blue Ocean GUI<\/a>. There is also an older <a href=\"https:\/\/www.jenkins.io\/doc\/book\/pipeline\/getting-started\/#through-the-classic-ui\">\u201cclassic UI\u201d<\/a>, but if you want to use a UI Blue Ocean is recommended.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-extending-jenkins-with-plugins\">Extending Jenkins with Plugins<\/h2>\n\n\n\n<p>Jenkins is designed to be easily extended via plugins \u2013 and over the years a thriving community has created a huge plugin ecosystem. The strength of this community, and subsequently the size of the plugin library, is one of the best things about Jenkins.<\/p>\n\n\n\n<p>You can find a plugin for just about anything you need, as there are already 1500+ plugins contributed by the community (and counting). This is a good place to note that Jenkins is very actively updated and <a href=\"https:\/\/www.jenkins.io\/participate\/\">open to community participation<\/a>.<\/p>\n\n\n\n<p>Many testing tools like Applitools have a plugin that can easily help get your testing and CI\/CD working together. Check out the <a href=\"https:\/\/plugins.jenkins.io\/applitools-eyes\/\">Applitools plugin for Jenkins<\/a> to see how this works.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-should-you-use-jenkins\">Should You Use Jenkins?<\/h2>\n\n\n\n<p>Jenkins is a popular open source tool for CI\/CD that is free to use. While you may need some server administration skills to configure and monitor Jenkins, there are many advantages to consider. The Jenkins project includes a large plugin ecosystem, the community around it is thriving and it is actively developed. If that sounds appealing to you, then give Jenkins a look for your CI\/CD needs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-learn-more\">Learn More<\/h3>\n\n\n\n<ul>\n<li><a href=\"https:\/\/testautomationu.applitools.com\/jenkins-tutorial\/\">Continuous Integration with Jenkins [Free Course]<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/app14743.cloudwayssites.com\/blog\/how-to-update-jenkins-build-status-in-github-pull-requests-step-by-step-tutorial\/\">How to update Jenkins build status in GitHub pull requests [Step-by-Step Tutorial]<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.jenkins.io\/doc\/\">Jenkins Documentation [official]<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Jenkins is a popular open source automation server. It\u2019s used to implement Continuous Integration (CI) and Continuous Delivery (CD) for any development project.<\/p>\n","protected":false},"author":8,"featured_media":29140,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[12271],"tags":[10045,10046,10047,10048,10086,10152],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.5 (Yoast SEO v24.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Jenkins? How to Use Jenkins for CI\/CD and Testing - Applitools<\/title>\n<meta name=\"description\" content=\"Jenkins is a popular open source automation server. It\u2019s used to implement Continuous Integration (CI) and Continuous Delivery (CD) for any development project.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Jenkins? How to Use Jenkins for CI\/CD and Testing\" \/>\n<meta property=\"og:description\" content=\"Jenkins is a popular open source automation server. It\u2019s used to implement Continuous Integration (CI) and Continuous Delivery (CD) for any development project.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/\" \/>\n<meta property=\"og:site_name\" content=\"AI-Powered End-to-End Testing | Applitools\" \/>\n<meta property=\"article:published_time\" content=\"2021-06-04T16:54:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T18:07:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2021\/06\/What-is-Jenkins-Pipelines_831x542.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"831\" \/>\n\t<meta property=\"og:image:height\" content=\"542\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Applitools Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Applitools Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/\"},\"author\":{\"name\":\"Applitools Team\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#\/schema\/person\/7adb2f3d4eb42c65ccc8cd7ef840b000\"},\"headline\":\"What is Jenkins? How to Use Jenkins for CI\/CD and Testing\",\"datePublished\":\"2021-06-04T16:54:49+00:00\",\"dateModified\":\"2023-12-01T18:07:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/\"},\"wordCount\":890,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2021\/06\/What-is-Jenkins-Pipelines_831x542.jpg\",\"keywords\":[\"Continuous Delivery\",\"Continuous Deployment\",\"Continuous Integration\",\"Continuous Testing\",\"Jenkins\",\"Test Automation\"],\"articleSection\":[\"Getting Started\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/\",\"url\":\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/\",\"name\":\"What is Jenkins? How to Use Jenkins for CI\/CD and Testing - Applitools\",\"isPartOf\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2021\/06\/What-is-Jenkins-Pipelines_831x542.jpg\",\"datePublished\":\"2021-06-04T16:54:49+00:00\",\"dateModified\":\"2023-12-01T18:07:58+00:00\",\"description\":\"Jenkins is a popular open source automation server. It\u2019s used to implement Continuous Integration (CI) and Continuous Delivery (CD) for any development project.\",\"breadcrumb\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#primaryimage\",\"url\":\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2021\/06\/What-is-Jenkins-Pipelines_831x542.jpg\",\"contentUrl\":\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2021\/06\/What-is-Jenkins-Pipelines_831x542.jpg\",\"width\":831,\"height\":542},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/app14743.cloudwayssites.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting Started\",\"item\":\"https:\/\/app14743.cloudwayssites.com\/blog\/category\/getting-started\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"What is Jenkins? How to Use Jenkins for CI\/CD and Testing\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#website\",\"url\":\"https:\/\/app14743.cloudwayssites.com\/\",\"name\":\"Applitools Visual AI\",\"description\":\"Applitools delivers full end-to-end test automation with AI infused at every step.\",\"publisher\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/app14743.cloudwayssites.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#organization\",\"name\":\"Applitools\",\"url\":\"https:\/\/app14743.cloudwayssites.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2020\/03\/applitools.png\",\"contentUrl\":\"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2020\/03\/applitools.png\",\"width\":156,\"height\":28,\"caption\":\"Applitools\"},\"image\":{\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#\/schema\/person\/7adb2f3d4eb42c65ccc8cd7ef840b000\",\"name\":\"Applitools Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/app14743.cloudwayssites.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ab026ef5311aa0450f87e2ccab9c2fdc?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ab026ef5311aa0450f87e2ccab9c2fdc?s=96&d=mm&r=g\",\"caption\":\"Applitools Team\"},\"url\":\"https:\/\/app14743.cloudwayssites.com\/blog\/author\/itay\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"What is Jenkins? How to Use Jenkins for CI\/CD and Testing - Applitools","description":"Jenkins is a popular open source automation server. It\u2019s used to implement Continuous Integration (CI) and Continuous Delivery (CD) for any development project.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/","og_locale":"en_US","og_type":"article","og_title":"What is Jenkins? How to Use Jenkins for CI\/CD and Testing","og_description":"Jenkins is a popular open source automation server. It\u2019s used to implement Continuous Integration (CI) and Continuous Delivery (CD) for any development project.","og_url":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/","og_site_name":"AI-Powered End-to-End Testing | Applitools","article_published_time":"2021-06-04T16:54:49+00:00","article_modified_time":"2023-12-01T18:07:58+00:00","og_image":[{"width":831,"height":542,"url":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2021\/06\/What-is-Jenkins-Pipelines_831x542.jpg","type":"image\/jpeg"}],"author":"Applitools Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Applitools Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#article","isPartOf":{"@id":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/"},"author":{"name":"Applitools Team","@id":"https:\/\/app14743.cloudwayssites.com\/#\/schema\/person\/7adb2f3d4eb42c65ccc8cd7ef840b000"},"headline":"What is Jenkins? How to Use Jenkins for CI\/CD and Testing","datePublished":"2021-06-04T16:54:49+00:00","dateModified":"2023-12-01T18:07:58+00:00","mainEntityOfPage":{"@id":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/"},"wordCount":890,"commentCount":0,"publisher":{"@id":"https:\/\/app14743.cloudwayssites.com\/#organization"},"image":{"@id":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#primaryimage"},"thumbnailUrl":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2021\/06\/What-is-Jenkins-Pipelines_831x542.jpg","keywords":["Continuous Delivery","Continuous Deployment","Continuous Integration","Continuous Testing","Jenkins","Test Automation"],"articleSection":["Getting Started"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/","url":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/","name":"What is Jenkins? How to Use Jenkins for CI\/CD and Testing - Applitools","isPartOf":{"@id":"https:\/\/app14743.cloudwayssites.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#primaryimage"},"image":{"@id":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#primaryimage"},"thumbnailUrl":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2021\/06\/What-is-Jenkins-Pipelines_831x542.jpg","datePublished":"2021-06-04T16:54:49+00:00","dateModified":"2023-12-01T18:07:58+00:00","description":"Jenkins is a popular open source automation server. It\u2019s used to implement Continuous Integration (CI) and Continuous Delivery (CD) for any development project.","breadcrumb":{"@id":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#primaryimage","url":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2021\/06\/What-is-Jenkins-Pipelines_831x542.jpg","contentUrl":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2021\/06\/What-is-Jenkins-Pipelines_831x542.jpg","width":831,"height":542},{"@type":"BreadcrumbList","@id":"https:\/\/app14743.cloudwayssites.com\/blog\/what-is-jenkins-how-to-use-jenkins-ci-testing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/app14743.cloudwayssites.com\/"},{"@type":"ListItem","position":2,"name":"Getting Started","item":"https:\/\/app14743.cloudwayssites.com\/blog\/category\/getting-started\/"},{"@type":"ListItem","position":3,"name":"What is Jenkins? How to Use Jenkins for CI\/CD and Testing"}]},{"@type":"WebSite","@id":"https:\/\/app14743.cloudwayssites.com\/#website","url":"https:\/\/app14743.cloudwayssites.com\/","name":"Applitools Visual AI","description":"Applitools delivers full end-to-end test automation with AI infused at every step.","publisher":{"@id":"https:\/\/app14743.cloudwayssites.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/app14743.cloudwayssites.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/app14743.cloudwayssites.com\/#organization","name":"Applitools","url":"https:\/\/app14743.cloudwayssites.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/app14743.cloudwayssites.com\/#\/schema\/logo\/image\/","url":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2020\/03\/applitools.png","contentUrl":"https:\/\/app14743.cloudwayssites.com\/wp-content\/uploads\/2020\/03\/applitools.png","width":156,"height":28,"caption":"Applitools"},"image":{"@id":"https:\/\/app14743.cloudwayssites.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/app14743.cloudwayssites.com\/#\/schema\/person\/7adb2f3d4eb42c65ccc8cd7ef840b000","name":"Applitools Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/app14743.cloudwayssites.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ab026ef5311aa0450f87e2ccab9c2fdc?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ab026ef5311aa0450f87e2ccab9c2fdc?s=96&d=mm&r=g","caption":"Applitools Team"},"url":"https:\/\/app14743.cloudwayssites.com\/blog\/author\/itay\/"}]}},"_links":{"self":[{"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/posts\/29137"}],"collection":[{"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/comments?post=29137"}],"version-history":[{"count":0,"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/posts\/29137\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/media\/29140"}],"wp:attachment":[{"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/media?parent=29137"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/categories?post=29137"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/app14743.cloudwayssites.com\/wp-json\/wp\/v2\/tags?post=29137"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}