Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #7

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions original/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Build Status](http://23.96.122.58/job/hello_jenkins/badge/icon)](http://23.96.122.58/job/hello_jenkins/)
## Hello_Jenkins <img align="right" src="img/liatrio.png">
This simple exercise is designed to introduce you to Jenkins and continuous integration. This was originally written
as an exercise for California State University, Chico. I have since modified it to be a simple exercise for anyone
Expand All @@ -20,7 +21,7 @@ heart's desire.
#### Setting up a Job in Jenkins
![Jenkins Landing Page](img/jenkins_landing.png)

1. Navtigate to Jenkins server.
1. Navigate to Jenkins server.
2. Click _New Item_.
3. Enter a name for your project, click _Freestyle Project_, then _OK_.
1. _Note_: Please do not include a space.
Expand All @@ -33,7 +34,7 @@ heart's desire.
2. Set up cron job by putting in `H/2 * * * *`.
6. Set up _Build_.
1. Add build step _Execute Shell_.
2. Enter `make` (This will run the Makefile).
2. Enter `cd original` and `make` (This will change to the directory where the Makefile is and then run it).
7. Click _Save_.

If you want a bit more of a challenge consider setting up Webhooks as opposed to polling. A fun Jenkins exercise that
Expand Down