mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Add github workflow for Ubuntu build
This commit is contained in:
parent
f5703ff107
commit
22f030ebb8
1 changed files with 30 additions and 0 deletions
30
.github/workflows/ubuntu.yml
vendored
Normal file
30
.github/workflows/ubuntu.yml
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
name: Ubuntu build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.x'
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
sudo apt-get install -y bash-completion git meson libinih-dev liblua5.2-dev libglib2.0-dev
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
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