blob: 803bc4f5199be5d1926a12a29f36277b6ba9d1d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: |
PKGS=""
PKGS="$PKGS meson ninja-build"
PKGS="$PKGS libgtk-3-dev libvte-2.91-dev"
PKGS="$PKGS libxml2-dev libvirt-dev"
sudo apt-get install $PKGS
- name: contigure (meson)
run: meson build-test
- name: compile (ninja)
run: ninja -C build-test
|