-
Notifications
You must be signed in to change notification settings - Fork 119
47 lines (39 loc) · 1.22 KB
/
libdnf.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: libdnf
on:
pull_request:
workflow_dispatch:
jobs:
libdnf:
name: "libdnf"
strategy:
fail-fast: false
matrix:
include:
- name: "CentOS Stream 10"
image: "quay.io/centos/centos:stream10-development"
- name: "Fedora latest"
image: "registry.fedoraproject.org/fedora:latest"
- name: "Fedora Rawhide"
image: "registry.fedoraproject.org/fedora:rawhide"
runs-on: ubuntu-latest
container:
image: ${{ matrix.image }}
steps:
- name: "Checkout repository"
uses: actions/checkout@v4
- name: "Enable CRB repository"
if: ${{ matrix.name == 'CentOS Stream 10' }}
run: |
dnf --setopt install_weak_deps=False install -y dnf-plugins-core
dnf config-manager --enable crb
- name: "Install packages"
run: |
dnf --setopt install_weak_deps=False install -y \
cmake gcc glib2-devel libdnf-devel json-c-devel
- name: "Run libdnf plugin test"
run: |
cd './src/plugins/libdnf'
mkdir build && cd build
cmake ../ -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON
make
CTEST_OUTPUT_ON_FAILURE=1 make test