Debug School

ashish
ashish

Posted on

Jenkins

1.Jenkin workflow
different tools at each stage
jenkins -CI integeration from -SCAN --> Compile---> UT----> Package --->Archive

2.Pointers to be careful about while building the flow

Question#1 – What is your programming Language
JAVA
Question#2 – Where is the source code for project?
Github
https://github.com/devopsschool-demo-labs-projects/helloworld-java-maven
Question#3 – How Frequently you want this JOB to be triggered?
daily
Question#4 – What is your Builders?
maven ant gradle
pom.xml build.xml build.gradle
goal target task
===================================================
compile - compile compile compile
test - test
package - package
Question# 5 – Whom you want to deliver Feedback of Job
email

  1. Learn to publish the test results Jnit 5.Archive the package -Archiving 7.package installation --Sonar qube --for code scan

6.Automating the CI

(5-6) different options ( poll scm,git webhook( git hub integration --push triggers the build ),post build (upstream and downstream flow), build periodically ,build after other project are built)

Top comments (0)