blob: ed6c5119ee647951a4d638664965292661349e18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
stages:
- build
build_fedora:
stage: build
image: fedora:latest
script:
- dnf install -y 'dnf-command(builddep)'
- dnf builddep -y *.spec
- mkdir build-meson
- meson . build-meson
- ninja-build -C build-meson
|