monado/.gitlab-ci/README.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.1 KiB
Markdown
Raw Normal View History

# CI and Generated Stuff Readme
<!--
2024-03-21 15:43:34 +00:00
# Copyright 2018-2024, Collabora, Ltd. and the Monado contributors
#
# SPDX-License-Identifier: CC0-1.0
-->
We use the FreeDesktop
["CI Templates"](https://freedesktop.pages.freedesktop.org/ci-templates) to
maintain build containers using code in this repo, storing the images in GitLab
Registry. Our CI files (and some other files) are auto-generated from Jinja
templates and `config.yml`, using
[ci-fairy](https://freedesktop.pages.freedesktop.org/ci-templates/ci-fairy.html).
You can install it with:
<!-- do not break the following line, it is used in CI setup too, to make sure it works -->
```sh
2024-03-21 15:43:34 +00:00
pipx install git+https://gitlab.freedesktop.org/freedesktop/ci-templates@185ede0e9b9b1924b92306ab8b882a6294e92613
```
On Windows you will also need to have GNU make and busybox installed, such as with:
```pwsh
scoop install make busybox
```
To re-generate files, from the root directory, run:
```sh
make -f .gitlab-ci/ci-scripts.mk
```
If you really want to force rebuilding, you can build the clean target first:
```sh
make -f .gitlab-ci/ci-scripts.mk clean all
```