parent
7492692bc1
commit
bedb4f08c7
1 changed files with 22 additions and 0 deletions
22
.forgejo/workflows/ci.yml
Normal file
22
.forgejo/workflows/ci.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
name: CI
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: fedora:latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install build dependencies
|
||||||
|
run: |
|
||||||
|
dnf install -y \
|
||||||
|
gcc meson ninja-build pkgconf-pkg-config \
|
||||||
|
gtk4-devel webkitgtk6.0-devel
|
||||||
|
|
||||||
|
- name: Configure
|
||||||
|
run: meson setup build
|
||||||
|
|
||||||
|
- name: Compile
|
||||||
|
run: meson compile -C build
|
||||||
Loading…
Add table
Reference in a new issue