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 IssuesTake a look to see if anyone else has experienced the same issue as you and if they managed to solve it.
Open an IssueMake sure to read any relevant guidelines for opening issues on this repo before posting a new issue.
Sponsor directlyCheck 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.
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 currentHEAD
's build passed -
???
means ciboulette did not build currentHEAD
yet - had I waited a little bit to take screenshot, you could have seen my prompt change to
/o\
, indicating a failed build.
Installation
- clone the repository
- copy
bin
andlib
anywhere in your$PATH
-
cd
to the repository you want to CI - 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.
From the Blog
Interesting Articles
-
Generating income from open source
Jun 23 • 8 min read
-
2023 State of OSS
Apr 23 • 45 min read ★
-
A funding experiment...
Aug 19 • 10 min read
-
But You Said I could
Aug 19 • 2 min read
Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated
p-e622a1a2