0
What is Jenkins... I belive it might be related to Java so tagging... If not , let me know and I will change tag accordingly...
Need basic idea of Jenkins... What is call in Jenkins... Is this keyword related to batch file call method ?
1 Réponse
+ 1
Jenkins is built with Java, but you can use it without Java knowledges. This is ready for use system with UI. For example, that you can do:
- run automated tests (unit, functional, performance, etc.)
- speed up the releases of your application
- send notification to email or some messenger
- automate some jobs and other
Jenkins has a lot of plugins that help to add integrations with different systems (git, jira, docker, slack, etc.) or run some commands/requests via ssh, http, curl.
Jenkins allows to create single jobs or pipelines with many steps. In last case the Groovy language can be needed.
Wiki: "Jenkins is a free and open source automation server. Jenkins helps to automate the non-human part of the software development process, with continuous integration and facilitating technical aspects of continuous delivery."