My Very Own CI-server
 
 
 
 
 
Go to file
Jens Zahner d8daaaec1f Improve Advanced Build function (#40)
Extends Advanced Build to select the wanted event either release or push and added arbitrary optional named arguments.

Also fixed the bug that Advanced Build will only be available in GUI when API is enabled.

Fixes #37

Co-authored-by: Jens Zahner <jens@it-zahner.de>
Reviewed-on: #40
Co-authored-by: jenszahner <jenszahner@noreply.codeberg.org>
Co-committed-by: jenszahner <jenszahner@noreply.codeberg.org>
2022-05-21 17:17:19 +02:00
auth docs: auth and build documentation, link to pkg.go.dev docs 2021-07-17 10:53:44 +02:00
build build.js: added support for liveLog to JavaScript API calls 2022-02-18 22:10:43 +01:00
core Integrated sub-url support into mvoCI. 2022-03-05 15:56:39 +01:00
hook docs: hook and started web 2021-07-17 11:52:04 +02:00
static Improve Advanced Build function (#40) 2022-05-21 17:17:19 +02:00
views Improve Advanced Build function (#40) 2022-05-21 17:17:19 +02:00
web Improve Advanced Build function (#40) 2022-05-21 17:17:19 +02:00
.gitignore Installer: fixed bugs in postgreSQL database server support 2019-07-05 13:16:11 +02:00
LICENSE Initial commit 2019-03-29 13:23:42 +01:00
Makefile changed imports to use the new codeberg name 2021-06-24 00:08:45 +02:00
README.md deprecation notice on release build script 2022-02-13 11:31:46 +01:00
go.mod updated dependencies 2022-02-12 17:37:49 +01:00
go.sum updated dependencies 2022-02-12 17:37:49 +01:00
main.go create default config with cli-argument for easier installation behind sub-url'd proxy 2022-03-06 12:04:01 +01:00

README.md

mvoCI

Build Status Go Docs

My Very Own CI-server (Continuous Integration), a personal continuous integration system. mvoCI builds code from git repositories either on user-input, via an API call or on webhooks, i.e. whenever someone pushed commits to the git or when new releases are added.

mvoCI aims to be simple and do as much as is necessary and nothing more. It aims to have a small memory footprint, be easy to use and understand.

It is intended as a personal continuous integration server, useful for your private builds or builds of a team, who know and trust each other. It is not intended to be used for the public, for untrusted repositories or with untrusted co-users.

Be advised, that mvoCI uses shell access for its building routines. It is your responsibility to secure your machine from damage or data leakage by mvoCI.

What it does

  • organize Repositories and Builds of them
  • build Repositories on webhook or on click "Build Now"
  • build and publish release-artifacts to Gitea automatically
  • bindings to Gogs, Gitea, Gitbucket, Gitlab, Bitbucket and Github

What it does not

  • Anything more, like
    • timed builds
    • after build scripts
    • SVN, Mercurial, VCS (although there should not be a real reason for this constraint)
    • internationalization (only English)

Deprecation Notices

  • Going forward the division between Release and Push Build script will be removed and only the push build script will be kept going forward. Make sure to combine your release and push build scripts and make use of the environment variables like MVO_EVENT.

Building

Go mod takes care of dependencies. Just run the following for building mvoCI, and place it together with the necessary assets inside the dist-folder.

make dist

Requirements

Database

You need a database server, or use SQLite as database backend. You may use one of the following:

  • PostgreSQL
  • MySQL / MariaDB
  • SQLServer
  • SQLite3

Set up

  • ./mvo --install for the installation dialogues
  • ./mvo for production mode

Configuration and Usage

mvo.cfg

Config-file in JSON-format. See core/config.go.

Lock down

Do not execute mvoCI as root. It should be used with as little permissions as possible, but enough to be useful for your usecase. Most builds execute untrusted code like automake scripts, Makefiles or the like - make sure, that this untrusted code cannot leak information from your system.

systemd

You may use this script to start mvoCI automatically as an own user (e.g. mvo). Please make sure, that that user cannot do anything you wouldn't do yourself!

[Unit]
Description=mvoCI
After=syslog.target
After=network.target
After=mysqld.service
#After=postgresql.service

[Service]
RestartSec=2s
Type=simple
User=mvo
Group=mvo
WorkingDirectory=/home/mvo
ExecStart=/home/mvo/mvo
Restart=always
Environment=USER=mvo HOME=/home/mvo

[Install]
WantedBy=multi-user.target

Contribute

Feel free to contribute to mvoCI if there are features missing for your use case. Either send me write-up for your use case, then I'll evaluate if it is inline with my goals of mvoCI. Feel also free to send pull-requests or patches my way.

If you want to start, try adding new routes in web/routing.go, then fill the new route with content and a template in views/. You can also have a look in the REST-API (web/api.go) code and add new functions there, which might be useful or add new hook-code for other git-version control systems (hooks/).

Project Structure

  • main.go - start point, reads config, starts builders, hands control to echo
  • core/ - database, configuration, logging. Fundamental stuff.
  • build/ - build workers and starting of builds from the web-side.
  • web/ - routing "table" for echo, handlers for requests, most of them called by echo
  • hook/ - webhook-request definitions for parsing the requests more or less generically (see web/hook.go)