mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-12 10:48:39 +03:00
20 lines
450 B
YAML
Vendored
20 lines
450 B
YAML
Vendored
image: fedora:28
|
|
|
|
autotools-build:
|
|
script:
|
|
- dnf -y install dnf-plugins-core
|
|
- dnf -y groupinstall buildsys-build
|
|
- dnf -y builddep pixman
|
|
- ./autogen.sh
|
|
- make -sj4 check
|
|
|
|
meson-build:
|
|
script:
|
|
- dnf -y install dnf-plugins-core
|
|
- dnf -y groupinstall buildsys-build
|
|
- dnf -y builddep pixman
|
|
- dnf -y install ninja-build
|
|
- python3 -m pip install meson>=0.52.1
|
|
- meson build
|
|
- ninja -C build test
|