1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2024-10-27 20:34:20 +00:00
Go to file
Oliver Giles 078e0e9882 improve websocket handling
The previous implementation meant that messages could get lost if
both sending and receiving were scheduled to be processed in the
same event loop cycle. This commit separates the two channels
more clearly, while still allowing the close event in the receive
side to cancel the whole pipeline

Part of #49 refactor
2018-07-06 12:33:04 +03:00
example-scripts quote args to xsltproc 2015-09-20 09:23:50 +02:00
src improve websocket handling 2018-07-06 12:33:04 +03:00
test resolves #36: queue/start/run 2018-05-12 17:56:56 +03:00
CMakeLists.txt Implement websocket communication with kj-http 2018-06-30 20:34:56 +03:00
COPYING Added GPLv3 license file. 2017-10-11 09:56:26 +02:00
docker-build-centos.sh Implement websocket communication with kj-http 2018-06-30 20:34:56 +03:00
docker-build-debian.sh Implement websocket communication with kj-http 2018-06-30 20:34:56 +03:00
laminar.conf resolves #22: allow keeping N rundirs 2017-12-09 20:23:24 +02:00
laminar.service add systemd service file and default conf file 2015-09-19 14:50:22 +02:00
README.md Implement websocket communication with kj-http 2018-06-30 20:34:56 +03:00
UserManual.md update UserManual for 0.6 2018-05-18 12:42:43 +03:00

Laminar CI

Laminar (http://laminar.ohwg.net) is a lightweight and modular Continuous Integration service for Linux. It is self-hosted and developer-friendly, eschewing a configuration UI in favor of simple version-controllable configuration files and scripts.

Laminar encourages the use of existing GNU/Linux tools such as bash and cron instead of reinventing them.

Although the status and progress front-end is very user-friendly, administering a Laminar instance requires writing shell scripts and manually editing configuration files. That being said, there is nothing esoteric here and the guide should be straightforward for anyone with even very basic Linux server administration experience.

See the website and the documentation for more information.

Building from source

First install development packages for capnproto (git), rapidjson, sqlite and boost-filesystem from your distribution's repository or other source. Then:

git clone https://github.com/ohwgiles/laminar.git
cd laminar
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/
make -j4
sudo make install

make install includes a systemd unit file. If you intend to use it, consider creating a new user laminar or modifying the user specified in the unit file.