Push Changes to BuildHive and Never Run Your Tests

Written by: Kohsuke Kawaguchi

On top of pull requests auto-build, BuildHive now allows you to push changes directly in via ssh. We call this feature “validated merge."

If you are an active developer of a repository, chances are that you don’t use pull requests to send in changes. You probably just push changes directly into your repository instead. But one of the common problems in doing this is that if your change breaks the build, you are going to discover it too late. With validated merge, this problem will never happen again, and here is how it works.

First, you add the buildhive user as a collaborator to your repository, so that it can push when the build is done. We didn’t feel comfortable doing this automatically, so you need to do it explicitly.

Second, login to BuildHive (just once will suffice, so that it learns the public keys you registered with GitHub), head to the job page in BuildHive (like this ), and click on the “Git repository for validated merge" link from the left. Click the copy button to copy the “git remote add" command, paste it in your shell, and execute that on your local repository. This will add BuildHive as a remote repository.

Preparation is now complete. Go modify code like you normally do by creating commits, and when you are ready to push, push your changes to “jenkins" instead of pushing to “origin." If you are on a branch, replace “controller" with the branch name you are working on:

$ git push jenkins master

BuildHive will check out the current tip of the specified branch in GitHub, merge that with the changes you just submitted, then do the build and run tests. If the merge result successfully completes the build and tests, the result will be pushed to GitHub by BuildHive:

If you are unlucky and your changes weren’t as good as you thought, you’ll learn that it didn’t pass the builds. You then stash your work, come back to the broken changes and rework those. You probably don't remember which commit you pushed to BuildHive, so BuildHive provides a tag you can fetch into your workspace to get to it.

 
$ git stash
$ git fetch -n ssh://anonymous@buildhive.cloudbees.com/kohsuke2/sandbox-ant tag changes/45
$ git checkout changes/45
$ … make edits ...

You can add more commits to correct the problem, or you can even amend your commits — since your changes didn’t land in the repository, amending, rebasing, and so on is just fine. You can then re-push your changes and then go back to what you were working on before interrupted by a failure.

$ git push jenkins HEAD:master
$ git checkout master
$ git stash pop
… resume the work you were doing ...

If you’ve already headed home, your colleague can do this workflow for you.

Your time is precious. Don’t waste it by watching your laptop to complete tests. Instead, let BuildHive do it for you!

By the way, this is a feature already available in Jenkins Enterprise by CloudBees, so if you like the workflow but your source code isn’t in a public GitHub repository, you can do the same thing with any Git repository inside your firewall.

  • Kohsuke Kawaguchi
    Founder, Jenkins CI

Stay up to date

We'll never share your email address and you can opt out at any time, we promise.