-
Notifications
You must be signed in to change notification settings - Fork 41
42 lines (37 loc) · 1.03 KB
/
build.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
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
build-type: ['normal']
container:
- 'registry.fedoraproject.org/fedora:latest'
- 'registry.fedoraproject.org/fedora:rawhide'
- 'docker.io/library/mageia:cauldron'
fail-fast: false
container:
image: ${{ matrix.container }}
steps:
- run: dnf --assumeyes install
/usr/bin/cmake
/usr/bin/msgmerge
/usr/bin/msgfmt
/usr/bin/python3
/usr/bin/sphinx-build-3
python3-yui
python3-manatools
python3-setuptools
python3-libdnf5
python3-yaml
python3-pyxdg
python3-cairosvg
python3-pillow
python3-pystray
git-core
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -S . -B github-build
- name: Build
run: cmake --build github-build