Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Have you created a build job in Jenkins? Explain how to do it.
Home
Jenkins
Have you created a build job in Jenkins? Explain how to do it.
0
votes
asked
Apr 29, 2021
in
Jenkins
by
SakshiSharma
Have you created a build job in Jenkins? Explain how to do it.
#jenkins-jobs
jobs
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Apr 29, 2021
by
SakshiSharma
Yes. The simple steps are –
Click on New Item on the Dashboard.
Select the freestyle project option
Specify the details of the job like SCM, build triggers, advanced options etc…
It is important to specify the location of files that should be built.
Once all the settings are marked, click on ‘Add build step’ and select the appropriate option. For example, if you want to build a file, select the file name along with the build command.
Click on Build now for saving the build and doing a test run.
...