CI for YunoHost
Find a file
2020-08-17 18:39:56 +02:00
auto_upgrade_container.sh Buster is now the supported version 2020-08-01 21:17:14 +02:00
ci_cron Fix cron job 2020-03-27 14:50:48 +01:00
cleanup.sh create prints.sh 2020-05-26 19:32:46 +02:00
prepare.sh remove readonly 2020-05-26 19:36:55 +02:00
prints.sh remove readonly 2020-05-26 19:36:55 +02:00
README.md Update readme 2020-05-20 16:00:16 +02:00
rebuild_all.sh Buster is now the supported version 2020-08-01 21:17:14 +02:00
run.sh rename base into variables 2020-05-26 19:32:34 +02:00
utils.sh move apt-daily 2020-08-17 18:39:56 +02:00
variables.sh Buster is now the supported version 2020-08-01 21:17:14 +02:00

YunoHost-CI: Gitlab runner for YunoHost Core

Introduction

yunohost-ci is a custom executor for Gitlab Runner.

It uses LXD/LXC environment to run tests on YunoHost Core. Tests must be written in file .gitlab-ci.yml on each YunoHost Core repository to test.

Setup YunoHost-CI

First you need to install the system dependencies.

yunohost-ci essentially requires Git and the LXD/LXC ecosystem.

For Gitlab Runner, you can find doc here. On Debian-based system, you can add GitLabs official repository:

curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | sudo bash

Then install Gitlab Runner (min version: 12.1):

sudo apt-get install gitlab-runner

Then, on a Debian-based system (regular Debian, Ubuntu, Mint ...), LXD can be installed using snapd. On other systems like Archlinux, you will probably also be able to install snapd using the system package manager (or even lxd directly).

sudo apt install git snapd
sudo snap install lxd

# Adding lxc/lxd to /usr/local/bin to make sure we can use them easily even
# with sudo for which the PATH is defined in /etc/sudoers and probably doesn't
# include /snap/bin
sudo ln -s /snap/bin/lxc /usr/local/bin/lxc
sudo ln -s /snap/bin/lxd /usr/local/bin/lxd

Then you shall initialize LXD which will ask you several questions. Usually answering the default (just pressing enter) to all questions is fine.

sudo lxd init

Register YunoHost-CI

To use this runner, you must register the Gitlab Runner that you just installed (you can register in on several projects, or on the group that contains all projects). But, you have to disable the shared runner to only use this runner and not "Official" that is using a docker executor.

You can follow this official doc to register it. The only think to change is the point number 6, where you have to choose custom.

After that, clone this repo where you want, and be sure that scripts base.sh cleanup.sh prepare.sh and run.sh have the execution permission.

Finally, edit the file /etc/gitlab-runner/config.toml to add builds_dir, cache_dir, and all the [runners.custom] section. Your file should looks like this:

concurrent = 1
check_interval = 0

[session_server]
  session_timeout = 1800

[[runners]]
  name = "yunohost-ci"
  url = "https://gitlab.com/" # Gitlab URL
  token = "[SECRET-TOKEN]" # Very private token
  executor = "custom"
  builds_dir = "/builds" # Will be created if doesn't exist
  cache_dir = "/cache" # Will be created if doesn't exist
  [runners.custom]
    prepare_exec = "/opt/yunohost-ci/prepare.sh" # Path to a bash script to create lxd container and download dependencies.
    run_exec = "/opt/yunohost-ci/run.sh" # Path to a bash script to run script inside the container.
    cleanup_exec = "/opt/yunohost-ci/cleanup.sh" # Path to bash script to delete container.

Using images

Use the field image to switch between before-install or after-install (after-install by default) for example:

  • image: after-install to use the image after the postinstall of Yunohost
  • image: before-install to use the image before the installation of YunoHost

TODO

  • Support more YunoHost Core projects (for now only yunohost is supported, not moulinette...)
  • Git pull this repo before running tests to keep these files up-to-date.