Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
indent_style = space
indent_size = 8

[Makefile.am]
indent_style = tab
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.cache
/build/
55 changes: 55 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
include:
- project: 'freedesktop/ci-templates'
ref: master
file: '/templates/fedora.yml'


# Let's define some stages to get the correct order of jobs.
stages:
- container
- build

variables:
# The upstream repository path on gitlab.freedesktop.org to check
# for existing container images.
FDO_UPSTREAM_REPO: pipewire/rtkit

# A simple template so we only have one place where we need to
# define the Fedora version and the image tag
# Using a date as tag is best practice but it can be any string
# allowed by the GitLab registry.
.rtkit.fedora:43:
variables:
FDO_DISTRIBUTION_VERSION: 43
FDO_DISTRIBUTION_TAG: '2025-12-09.0'


# A job to build a Fedora 43 container with required deps
build-fedora-container:
extends:
- .fdo.container-build@fedora # the CI template
- .rtkit.fedora:43 # our template job above
stage: container
variables:
# Packages to install on the container
FDO_DISTRIBUTION_PACKAGES: >-
dbus-devel
gcc
git
libcap-devel
meson
polkit-devel
systemd-devel
xxd


# The build job for your project. Extending from the CI Templates
# .fdo.distribution-image makes it use the same image we built above.
build:
extends:
- .fdo.distribution-image@fedora
- .rtkit.fedora:43
stage: build
script:
- meson setup build
- ninja -C build
112 changes: 0 additions & 112 deletions Makefile.am

This file was deleted.

Loading
Loading