Giter VIP home page Giter VIP logo

hello_jenkins's Introduction

Hello_Jenkins

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 to use.

Overview

  1. Fork the repo.
  2. Set up job in Jenkins to connect to your repository and build C++ hello.cpp.
  3. Set up build status badge.
  4. Set up second job to run the program after build completes.

Prerequisites

A Jenkins server is needed in order to complete the exercise. One option is local virtualization using Docker or a virtual machine. Another is installing Jenkins on a cloud platform like AWS. A t2.micro would be more than enough for this particular exercise.

You should fork this repository and set up to run on your own. This will allow you to change and experiment to your heart's desire.

Setting up a Job in Jenkins

Jenkins Landing Page

  1. Navtigate to Jenkins server.
  2. Click New Item.
  3. Enter a name for your project, click Freestyle Project, then OK.
  4. Note: Please do not include a space.
  5. Name this something unique so there are no collisions.
  6. Set up Source Code Management.
  7. Select git.
  8. Enter the URL to your git repository
  9. Setting up Build Triggers
  10. Select Poll SCM.
  11. Set up cron job by putting in H/2 * * * *.
  12. Set up Build.
  13. Add build step Execute Shell.
  14. Enter make (This will run the Makefile).
  15. Click Save.

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

Set up Embeddable Build Status for Repo

Build status badge

The build status symbol often seen on a Github repository is normally connected to TravisCI or JenkinsCI. We are using JenkinsCI which requires a plugin called Embeddable Build Status. I have already installed it for you. You just need to add the proper information into your README.md file.

  1. Open the README file in a text editor.
  2. Go to the Embeddable Build Status page. The link is found on the main page of the job.
  3. Select the Markdown (with View) protected link and paste it in your README.
  4. Commit your README changes and push to Github.
  5. The change should automatically cause the job to build and after you can go to Github and check your repo. You should see the build status there

Because we selected With View you will be able to click the build status icon which will take you to the Job in Jenkins.

Set up Second Job to Run the Compiled Program

The final step to this demo is to set up a second job that automatically runs after the project builds. This is different than the other job because this will not have a git repository - it doesn't even build anything.

Just a note: In a real-life scenario you wouldn't run a program through a build job just like this because I/O is not possible via this console. There are other tools people use at this step like SeleniumHQ, SonarQube, or a Deployment. The point of this is to show downstream/upstream job relationships.

  1. Create a new Job in Jenkins
  2. Click New Item.
  3. Enter a name for your second job, click Freestyle Project, then OK.
  4. Go immediately to build step and select Execute Shell.
  5. Enter the following Command /var/lib/jenkins/workspace/<the name of your first project>/hello_exec
  6. Save
  7. Set your first job to call the second
  8. Go to your first job and open the Configure page.
  9. Scroll to bottom and add a Post-Build Action. Select Build other projects.
  10. Enter the name of your second job.
  11. Save
  12. Run your first job
  13. Do this by clicking build now on the main page.
  14. After that successfully builds go and check your second job.
  15. You should see it successfully run.
  16. Select a Build Job from History and go to the console log to see your program output. If you program has run there then you successfully set up a basic pipeline. Job history

Wrapping it up

As you can see, Jenkins has a ton of opportunity which makes it the leading CI tool for modern enterprise and software development. Jobs don't have to be explicitly build jobs which mean you can do other tasks like deployments, promotions, testing, feedback, and much more.

Thank You

Justin Bankes [email protected]

hello_jenkins's People

Contributors

jbankes avatar sanyamdogra avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.