mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
GitHub Workflow to build on Fedora (42), see .github/workflows/fedora-build.yaml
Signed-off-by: Mohamed Bana <mohamed.omar.bana@gmail.com>
This commit is contained in:
parent
3af4c5591e
commit
79b83803dd
1 changed files with 26 additions and 0 deletions
26
.github/workflows/fedora-build.yaml
vendored
Normal file
26
.github/workflows/fedora-build.yaml
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
name: Fedora Build
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: fedora-42
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.x'
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: |
|
||||||
|
sudo dnf update -y
|
||||||
|
sudo dnf upgrade -y
|
||||||
|
sudo dnf update -y bash-completion git meson ninja-build lua lua-libs lua-devel liblua5.2-dev glib2-devel
|
||||||
|
- name: Build & Install
|
||||||
|
run: |
|
||||||
|
meson setup build --prefix $HOME/opt/tio
|
||||||
|
meson compile -C build --verbose
|
||||||
|
meson install -C build
|
||||||
Loading…
Add table
Add a link
Reference in a new issue