Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

TermDescription
PipelineThe pipeline is a set of instructions given in the form of code for continuous delivery and consists of instructions needed for the entire build process. With pipeline, you can build, test, and deliver the application.
NodeThe machine on which Jenkins runs is called a node. A node block is mainly used in scripted pipeline syntax.
StageA stage block contains a series of steps in a pipeline. That is, the build, test, and deploy processes all come together in a stage. Generally, a stage block is used to visualize the Jenkins pipeline process.
StepA step is nothing but a single task that executes a specific process at a defined time. A pipeline involves a series of steps.


RDK-M Jenkins URL 

URL: https://rdkauto14.ccp.xcal.tv:8443/Paste this URL in respective browser


  • Click on New Item in the Jenkins dashboard.



Click on the New Item and Create a job name.

...

Based on the jobs we need to select the type of projects. Once project created it will be listed in job list 



Let's now create a pipeline job using the below Groovy script:

  • Click on New Item in the Jenkins dashboard.

  • Set the “Job Name” as parent Job

  • Select the “Job Type” as Pipeline project.

  • Add the Groovy script as explained above and save the job.


Groovy Script For RDKM_DEPLOY_AUTOMATICS_CORE

...