diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-01-23 15:50:19 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-01-23 15:50:19 +0100 |
commit | 793a8b129402b751183b6b07325924deed72c143 (patch) | |
tree | 3ca2d6d01bb2bdca1b79b6f01c44e2ea49e53c3e | |
parent | 52792e2021591b6863f5d2d438a2ec4a2476aadd (diff) | |
download | vconsole-793a8b129402b751183b6b07325924deed72c143.tar.gz |
install deps
-rw-r--r-- | .github/workflows/build.yaml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3de26f2..96cb58f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -5,7 +5,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: meson + - name: install deps + run: apt-get install meson libgtk-3-dev libvte-2.91-dev libxml2-dev libvirt-dev libavahi-client-dev libavahi-glib-dev + - name: contigure (meson) run: meson build-test - - name: ninja + - name: compile (ninja) run: ninja -C build-test |