SlideShare a Scribd company logo
Introduction to Jenkins Pipeline in data engg
Introduction to Jenkins Pipeline in data engg
JENKINS PIPELINE
Jenkins Pipeline
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}
JENKINS PIPELINE
Jenkins Pipeline
pipeline {
agent any
stages {
stage('Checkout') {
steps {
echo 'Code Checkout'
}
}
stage('Compile') {
steps {
echo 'Compile'
}
}
stage('Build') {
steps {
echo 'Build'
}
}
stage('Deploy') {
steps {
echo 'Deploy'
}
}
stage('Test') {
steps {
echo 'Test'
}
}
}
}

More Related Content

PPTX
Jenkins and Maven in cloud data Engineering
PPTX
Logical Design Architecture in Internet of Things
PDF
Wireless sensor networks in Internet of Things
PPTX
Classification Algorithm in Machine Learning
PPTX
Decision Trees Learning in Machine Learning
PPTX
Operating system Virtualization_NEW.pptx
PPTX
Synchronization Peterson’s Solution.pptx
PPT
Control structures in Python programming
Jenkins and Maven in cloud data Engineering
Logical Design Architecture in Internet of Things
Wireless sensor networks in Internet of Things
Classification Algorithm in Machine Learning
Decision Trees Learning in Machine Learning
Operating system Virtualization_NEW.pptx
Synchronization Peterson’s Solution.pptx
Control structures in Python programming

More from Senthil Vit (17)

PPT
Data and Expressions in Python programming
PPTX
Python programming Introduction about Python
PDF
Switching Problems.pdf
PPT
Big Oh.ppt
PPT
AsymptoticNotations.ppt
PPT
snort.ppt
PPTX
First Best and Worst Fit.pptx
PPTX
File Implementation Problem.pptx
PPT
Design Issues of an OS.ppt
PPTX
Operating Systems – Structuring Methods.pptx
PPT
deadlock.ppt
PPTX
Virtualization.pptx
PPT
Traffic-Monitoring.ppt
PPTX
Lect_2.pptx
PPT
6. Deadlock.ppt
PPT
os4-2_cop.ppt
PPT
ALPHA_BETA_EXAMPLE_PROB
Data and Expressions in Python programming
Python programming Introduction about Python
Switching Problems.pdf
Big Oh.ppt
AsymptoticNotations.ppt
snort.ppt
First Best and Worst Fit.pptx
File Implementation Problem.pptx
Design Issues of an OS.ppt
Operating Systems – Structuring Methods.pptx
deadlock.ppt
Virtualization.pptx
Traffic-Monitoring.ppt
Lect_2.pptx
6. Deadlock.ppt
os4-2_cop.ppt
ALPHA_BETA_EXAMPLE_PROB
Ad

Recently uploaded (20)

PPTX
CH1 Production IntroductoryConcepts.pptx
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPTX
Sustainable Sites - Green Building Construction
PDF
composite construction of structures.pdf
PPTX
Construction Project Organization Group 2.pptx
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PPTX
bas. eng. economics group 4 presentation 1.pptx
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PPTX
web development for engineering and engineering
PPTX
Welding lecture in detail for understanding
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PDF
Well-logging-methods_new................
PPT
Project quality management in manufacturing
PDF
Digital Logic Computer Design lecture notes
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
CH1 Production IntroductoryConcepts.pptx
Foundation to blockchain - A guide to Blockchain Tech
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
Sustainable Sites - Green Building Construction
composite construction of structures.pdf
Construction Project Organization Group 2.pptx
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
bas. eng. economics group 4 presentation 1.pptx
R24 SURVEYING LAB MANUAL for civil enggi
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
web development for engineering and engineering
Welding lecture in detail for understanding
Automation-in-Manufacturing-Chapter-Introduction.pdf
Well-logging-methods_new................
Project quality management in manufacturing
Digital Logic Computer Design lecture notes
Embodied AI: Ushering in the Next Era of Intelligent Systems
Ad

Introduction to Jenkins Pipeline in data engg