cimpler
cimpler copied to clipboard
A simple Continuous Integration server that is plugin-based and github-integrated.
## Description When QAing https://github.com/danielbeardsley/cimpler/pull/114 , VSCode was giving me a warning about the usage of `assert.equal` in `test/git-build.test.js` as it has been deprecated for a while now. We should...
Problem --- ``` COMINOR enoronha 12:31:25 (unbreak-saving-wikis-in-cloud/on-prem) ~/Code ▶ cimpler build Adding build of on-prem to the queue ... OK COMINOR enoronha 12:31:28 (unbreak-saving-wikis-in-cloud/on-prem) ~/Code ▶ cimpler build -b "unbreak-saving-wikis-in-cloud/on-prem"...
Instead of forcing the user to run multiple node processes, allow them to specify multiple config files and run them in the same process.
Right now, branches get added to the queue with commit hash of `00000000000000000000` They fail as soon as they are picked up cause that's not a valid commit hash. It's...
We allow filtering branches on the outgoing side (git-build can be configured to only pull builds from the queue it's interested in). If you try to ignore a subset of...
We want to be able to support cimpler running several commands are reporting each one as a separate CI status / log. Suggested Implementation ===================== Config ------- Instead of `command:...
I created a script to inform the user of status updates to a particular branch by polling `cimpler status` (see [here](https://gist.github.com/adam000/6a1b7a787bf51e8311b8) for a somewhat commented version), but obviously polling `cimpler...
So a test can be ran and the log tailed with one command.
- Make "bin/cimpler -d" start the server - To conform to other linuxy daemon utilities. - Edit package.json to include `bin/cimpler` in the bin dir. - Is that possible?
I can see a use for two plugins: ## build-log - Outputs a running log of build events (like the server log is now) - Use a defined format -...