mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-05 10:42:33 +01:00
3ebb2c5eec
Previously every build showed up in the CI as "build". Update the job names to reflect what they are. For example the Ubuntu build is now called "ubuntu_build" Co-authored-by: Patrick <tingping@tingping.se>
26 lines
703 B
YAML
26 lines
703 B
YAML
name: Ubuntu Build
|
|
on: [push, pull_request]
|
|
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
|