mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Merge 79b83803dd into 6fb3a64ba2
This commit is contained in:
commit
8bef1317f4
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