mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-12 22:22:43 +01:00
28 lines
748 B
YAML
28 lines
748 B
YAML
name: Ubuntu Build
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- 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 libnotify-dev libpci-dev libperl-dev libproxy-dev libssl-dev python3-dev python3-cffi mono-devel desktop-file-utils
|
|
|
|
- name: Configure
|
|
run: meson build -Dwith-text=true -Dwith-theme-manager=true
|
|
|
|
- name: Build
|
|
run: ninja -C build
|
|
|
|
- name: Test
|
|
run: ninja -C build test
|
|
|
|
- name: Install
|
|
run: sudo ninja -C build install
|