mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-08 12:12:39 +01:00
33 lines
765 B
YAML
33 lines
765 B
YAML
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
|