All Projects → ohwgiles → Laminar

ohwgiles / Laminar

Licence: gpl-3.0
Fast and lightweight Continuous Integration

Programming Languages

cpp
1120 projects

Projects that are alternatives of or similar to Laminar

Axel
Axel tries to accelerate the download process by using multiple connections per file, and can also balance the load between different servers.
Stars: ✭ 1,997 (+1132.72%)
Mutual labels:  lightweight
Bicing Api
Get statistics and locations of bicycle stations through REST API
Stars: ✭ 149 (-8.02%)
Mutual labels:  continuous-integration
Lazy Line Painter
Lazy Line Painter - A Modern JS library for SVG path animation
Stars: ✭ 1,918 (+1083.95%)
Mutual labels:  lightweight
Volkswagen
🙈 Volkswagen detects when your tests are being run in a CI server, and makes them pass.
Stars: ✭ 12,148 (+7398.77%)
Mutual labels:  continuous-integration
Fabric8
fabric8 is an open source microservices platform based on Docker, Kubernetes and Jenkins
Stars: ✭ 1,783 (+1000.62%)
Mutual labels:  continuous-integration
Fledge
Fledge: A CI/CD tool for Flutter
Stars: ✭ 152 (-6.17%)
Mutual labels:  continuous-integration
Terraform Aws Cicd
Terraform Module for CI/CD with AWS Code Pipeline and Code Build
Stars: ✭ 138 (-14.81%)
Mutual labels:  continuous-integration
Lw oopc
modified from http://sourceforge.net/projects/lwoopc/
Stars: ✭ 159 (-1.85%)
Mutual labels:  lightweight
Terrahub
Terraform Automation and Orchestration Tool (Open Source)
Stars: ✭ 148 (-8.64%)
Mutual labels:  continuous-integration
Run Clang Format
A wrapper script around clang-format, suitable for linting multiple files and to use for continuous integration
Stars: ✭ 157 (-3.09%)
Mutual labels:  continuous-integration
Industrial ci
Easy continuous integration repository for ROS repositories
Stars: ✭ 146 (-9.88%)
Mutual labels:  continuous-integration
Keycloak Config Cli
Import YAML/JSON-formatted configuration files into Keycloak - Configuration as Code for Keycloak.
Stars: ✭ 147 (-9.26%)
Mutual labels:  continuous-integration
Gitlab Ci Monitor
A simple dashboard for monitoring GitLab CI builds. Alpha version.
Stars: ✭ 152 (-6.17%)
Mutual labels:  continuous-integration
Moderncppstarter
🚀 Kick-start your C++! A template for modern C++ projects using CMake, CI, code coverage, clang-format, reproducible dependency management and much more.
Stars: ✭ 2,381 (+1369.75%)
Mutual labels:  continuous-integration
Hound
Automated code review for GitHub pull requests.
Stars: ✭ 1,904 (+1075.31%)
Mutual labels:  continuous-integration
Cdeasy
Continuous Delivery made Easy ;)
Stars: ✭ 143 (-11.73%)
Mutual labels:  continuous-integration
Continuous Integration
Bazel's Continuous Integration Setup
Stars: ✭ 151 (-6.79%)
Mutual labels:  continuous-integration
Tecli
In a world where everything is Terraform, teams use Terraform Cloud API to manage their workloads. TECLI increases teams productivity by facilitating such interaction and by providing easy commands that can be executed on a terminal or on CI/CD systems.
Stars: ✭ 158 (-2.47%)
Mutual labels:  continuous-integration
Syncd
syncd是一款开源的代码部署工具,它具有简单、高效、易用等特点,可以提高团队的工作效率.
Stars: ✭ 2,065 (+1174.69%)
Mutual labels:  continuous-integration
Github Actions For Desktop Apps
This repo contains a sample WPF application to demonstrate how to create CI/CD pipelines using GitHub Actions.
Stars: ✭ 156 (-3.7%)
Mutual labels:  continuous-integration

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=/usr
make -j4
# Warning: the following will overwrite an existing /etc/laminar.conf
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.

Packaging for distributions

The pkg directory contains shell scripts which use docker to build native packages (deb,rpm) for common Linux distributions. Note that these are very simple packages which may not completely conform to the distribution's packaging guidelines, however they may serve as a starting point for creating an official package, or may be useful if the official package lags.

Contributing

Issues and pull requests via GitHub are most welcome. All pull requests must adhere to the Developer Certificate of Origin.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].