More Related Content
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)
Data and Expressions in Python programming Python programming Introduction about Python First Best and Worst Fit.pptx File Implementation Problem.pptx Design Issues of an OS.ppt Operating Systems – Structuring Methods.pptx Recently uploaded (20)
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 Introduction to Jenkins Pipeline in data engg
- 4. 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'
}
}
}
}