Jenkins, while great, has its limitations if you don’t build it correctly. Several teams, products, etc. use Jenkins for a CI/CD tool and set up jobs through the Web Interface however then there is extra work to back up the jobs, save it somewhere, etc. And, how do they ensure a job is set and not later changed over the course of time? Well, it’s simple… you use the Jenkins DSL.
Jenkins DSL is domain specific language and is basically a coded Jenkins job interface. You still install Jenkins as usual however all jobs are saved into a code repository, pretty awesome huh? My team introduced this to me and it’s pretty slick. However the problem for me, I like to test and develop locally which means I need a Jenkins instance running on the Mac that then reads from my Git Repository and builds all my necessary jobs.
Alright, here is how it’s done, on a Mac:
Keep in mind, this worked for me however there were some struggles along the way.
sudo su Jenkins
sudo ssh-keygen
Now to the DSL.. to be continued…
Tips:
sudo launchctl unload /Library/LaunchDaemons/org.jenkins-ci.plist
sudo launchctl load /Library/LaunchDaemons/org.jenkins-ci.plist