Show current state of Jenkins build on GitHub repo Show current state of Jenkins build on GitHub repo jenkins jenkins

Show current state of Jenkins build on GitHub repo


Ok, here's how you can set up Jenkins to set GitHub build statuses. This assumes you've already got Jenkins with the GitHub plugin configured to do builds on every push.

  1. Go to GitHub, log in, go to Settings, Personal access tokens, click on Generate new token.

    screenshot of GitHub settings

  2. Check repo:status (I'm not sure this is necessary, but I did it, and it worked for me).

    screenshot of GitHub token generation

  3. Generate the token, copy it.

  4. Make sure the GitHub user you're going to use is a repository collaborator (for private repos) or is a member of a team with push and pull access (for organization repos) to the repositories you want to build.

  5. Go to your Jenkins server, log in.

  6. Manage JenkinsConfigure System
  7. Under GitHub Web Hook select Let Jenkins auto-manage hook URLs, then specify your GitHub username and the OAuth token you got in step 3.

    screenshot of Jenkins global settings

  8. Verify that it works with the Test Credential button. Save the settings.

  9. Find the Jenkins job and add Set build status on GitHub commit to the post-build steps

    screenshot of Jenkins job configuration

That's it. Now do a test build and go to GitHub repository to see if it worked. Click on Branches in the main repository page to see build statuses.

sceenshot of the main page where you click on 'branches'

You should see green checkmarks:

screenshot of GitHub branches with build status


In the meanwhile the UI of Jenkins and GitHub has changed a bit and it took me a while to figure out how to configure Jenkins now correctly. The explanation here is based on Jenkins version 2.121.1.

I also assume that you have already configured your Jenkins Job be triggered by a webhook or by polling.Those are the steps that I have taken to get it working:

  1. Configure Github: Create Personal Access Token with OAuth Scope repo:status
  2. Configure Jenkins: Configure System and add the OAuth Secret as a GitHub Server - use Secret Text as an authentication method to put the OAuth Secret in there.
  3. Configure your Jenkins Job: Add Set GitHub commit status as Post-build action. Set the Status Result to One of the default messages and statuses.
  4. Check your result on GitHub: Check if you get the build status and build execution duration on your GitHub commit.

Configure Github

Create Personal Access Token


enter image description here


enter image description here


enter image description here


Configure Jenkins

enter image description here


enter image description here


enter image description here


enter image description here


enter image description here


Configure Jenkins Job

enter image description here


enter image description here


enter image description here


Result

You will now see the status for your commits and branches:

enter image description here


What I did is quite simple:

  1. Install the Hudson Post Task Plugin
  2. Create a Personal Access Token here : https://github.com/settings/tokens
  3. Add a Post Task Plugin that always put success

    curl -XPOST -H "Authorization: token OAUTH TOKEN" https://api.github.com/repos/:organization/:repos/statuses/$(git rev-parse HEAD) -d "{  \"state\": \"success\",  \"target_url\": \"${BUILD_URL}\",  \"description\": \"The build has succeeded!\"}"
  4. Add a Post Task Plugin that will put failure if "marked build as failure"

    curl -XPOST -H "Authorization: token OAUTH TOKEN" https://api.github.com/repos/:organization/:repos/statuses/$(git rev-parse HEAD) -d "{  \"state\": \"failure\",  \"target_url\": \"${BUILD_URL}\",  \"description\": \"The build has failed!\"}"
  5. You can also add a call to pending at the beginning of tests

    curl -XPOST -H "Authorization: token OAUTH TOKEN" https://api.github.com/repos/:organization/:repos/statuses/$(git rev-parse HEAD) -d "{  \"state\": \"pending\",  \"target_url\": \"${BUILD_URL}\",  \"description\": \"The build is pending!\"}"

Screenshot of the Post build task configuration