Jenkins
by Mark Nielsen
Copyright 2022
I will do the basic steps for installation. I will make another document or
add to this document for more advanced stuff. I think docker images
are more meant for advanced users since you know how it works, do you can
use it easily. Lets first start as this is your first exposure. We will
use ubuntu.
- Links
- Setup and Install
- First projects
- Simple Pipeline project
Links
- https://www.jenkins.io/doc/book/installing/
- https://www.jenkins.io/doc/book/installing/linux/#debianubuntu
- https://mohitgoyal.co/2017/02/11/create-a-first-basic-job-in-jenkins/
Setup and Install
First Project
- Login to the main jenkinds page.
- Click on "Create a job"
- Enter "First"
- Under the next menu, skip most of it and go to "Build" and select "Execute shell".
- Under the box "Command" enter the following and save:
pwd
ls -al
- Click "Build Now" from the lest hand menu.
- You can follow the instructions in the webpage in the link to see the results
and such.
You can created your first job and ran it.
Now we want to interact with a MySQL server.
Simple Pipeline
This section will be completed in the future.