Skip to content

Commit

Permalink
Create konsolebox-ubuntu-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
konsolebox authored Apr 16, 2024
1 parent cda9612 commit c56d8e0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/konsolebox-ubuntu-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Ubuntu Build
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
ubuntu_build:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2

- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y meson libcanberra-dev libdbus-glib-1-dev libglib2.0-dev libgtk2.0-dev libluajit-5.1-dev libpci-dev libperl-dev libssl-dev python3-dev python3-cffi mono-devel desktop-file-utils
- name: Configure
run: meson build -Dtext=true -Dtheme-manager=true -Dauto_features=enabled

- name: Build
run: ninja -C build

- name: Test
run: ninja -C build test

- name: Install
run: sudo ninja -C build install

0 comments on commit c56d8e0

Please sign in to comment.