-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This allows us to see when things are working or not in pushes and pull requests.
- Loading branch information
1 parent
0b84709
commit 97b042c
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
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 }} | ||
|
||
- run: dnf --assumeyes install | ||
/usr/bin/cmake | ||
/usr/bin/python3 | ||
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 |