Skip making a build for certain push. Just add [ci skip]
into your commit's message to let Jenkins know, that you do not want to perform build for the next push.
Full example:
$ git commit -m 'documentation update [ci skip]'
It is very useful when you are working things unrelated to application's code such as README. This feature idea comes from Travis CI.
Install the plugin from the Jenkins Plugin Manager.
In the job configuration, check Enable ci-skip.
Jenkins is based on works by changeset, so if there is changeset from before build and commit includes [ci skip]
, then build is skipped as NOT_BUILT
.
If there is no changeset, it will be build.
$ bundle install
$ ./bin/start-jenkins
$ open http://localhost:8080
$ bundle exec rake
- Get working with Mercurial plugin #6
- Doc, etc...
- initial release