1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2025-06-13 12:54:29 +00:00
Go to file
Devon Bagley f1a5393477 Fix up PR #102
- Clean up Dockerfile
  - Add comments for user related commands in Dockerfile
  - Correct spelling in UserManual.md
  - Remove an uneeded `-t` flag in the laminarc example
  - UIDs are flexible when using the `--user` option with docker so
    remove ref to UIDs for file ownership
  - Remove additional example and explanation for docker-build.sh script
2019-09-15 18:08:59 -07:00
docker Fix up PR #102 2019-09-15 18:08:59 -07:00
etc resolves #85: systemd unit file After=network.target 2019-03-31 08:36:08 +03:00
example-scripts quote args to xsltproc 2015-09-20 09:23:50 +02:00
src add uint typedef 2019-07-04 12:28:33 +03:00
test test: fix RunTest on systems with single file core utilities (#95) 2019-05-24 21:27:24 +03:00
CMakeLists.txt resolves #80: reverse-proxy with custom base URL 2019-03-29 22:43:16 +03:00
COPYING Added GPLv3 license file. 2017-10-11 09:56:26 +02:00
docker-build-centos.sh Install bash/zsh completions in correct locations 2018-10-16 20:38:48 +03:00
docker-build-debian.sh build scripts: debian 10 is now current stable 2019-09-04 09:33:16 +03:00
docker-build.sh feat(Dockerfile): build docker image to run laminar 2019-09-15 00:03:42 -07:00
docker-xbuild-debian-armhf.sh build scripts: debian 10 is now current stable 2019-09-04 09:33:16 +03:00
README.md README: add explicit instruction for installing dependencies 2019-08-25 07:48:56 +03:00
UserManual.md Fix up PR #102 2019-09-15 18:08:59 -07:00

Laminar CI status

Laminar (https://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 favour 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 (version 0.7.0 or newer), rapidjson, sqlite and boost (for the header-only multi_index_container library) from your distribution's repository or other source.

On Debian Buster, this can be done with:

sudo apt install \
		 capnproto cmake g++ libboost-dev libcapnp-dev libsqlite-dev libsqlite3-dev make rapidjson-dev zlib1g-dev

Then compile and install laminar with:

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.