Get support for KnpLabs/Ciboulette

If you're new to LTH, please see our FAQ for more information on what it is we do.

Support Options

Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:

View Open Issues

Take a look to see if anyone else has experienced the same issue as you and if they managed to solve it.

Open an Issue

Make sure to read any relevant guidelines for opening issues on this repo before posting a new issue.

Sponsor directly

Check out the page and see if there are any options to sponsor this project or it's developers directly.

KnpLabs/Ciboulette

Ciboulette, your local CI server

NOTE This is alpha software, it might very well completely mess with your git hooks. Use with caution!

What it is

Ciboulette is a local, unobtrusive CI server. It is designed to run as a git post-commit hook.

Ciboulette

As you can see, Ciboulette runs after each commit. What you can not see, though, is that it runs builds asynchronously as to not block your commit workflow.

Also seen in this screenshot:

  • Growl notification of a failed build
  • the \o/ smiley in my prompt means current HEAD's build passed
  • ??? means ciboulette did not build current HEAD yet
  • had I waited a little bit to take screenshot, you could have seen my prompt change to /o\, indicating a failed build.

Installation

  1. clone the repository
  2. copy bin and lib anywhere in your $PATH
  3. cd to the repository you want to CI
  4. run ciboulette --install

Configuration

Ciboulette is configured via git's configuration. The only mandatory option is ciboulette.runner, which is the script that will be used to build your project.

You can either set it by hand:

git config --add ciboulette.runner "your_script"

or use ciboulette's interactive configurator:

ciboulette --config

Notifiers

Right now, ciboulette only supports Growl notifications through growlnotify. You don't have anything to do, it will work out of the box.

If you are adventurous, I wrote the following bash function to display the current repository's HEAD build status in my prompt (will only work at the repository's root for now):

function prompt_head_build_status {
  if [ ! -d .git -o ! -f .ciboulette.builds ]; then
    return 0
  fi

  current_commit=$( git rev-parse HEAD )

  status=$( grep $current_commit .ciboulette.builds | awk '{print $2}' )

  case "$status" in
    fail)
      echo "/o\\"
      ;;
    pass)
      echo "\o/"
      ;;
    *)
      echo "???"
      ;;
  esac
}
Our Mission

We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.

Interesting Articles

Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated

p-e622a1a2