From 4bbb813f1bc1bd23b23e2b41549fdd8ffa44cff1 Mon Sep 17 00:00:00 2001 From: Joachim Nilsson Date: Mon, 16 Dec 2019 10:58:39 +0100 Subject: [PATCH] Install tshark in runner --- .github/workflows/ccpp.yml | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 6c590e4..3673bf6 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -4,18 +4,23 @@ on: [push] jobs: build: - + name: sysklogd ci runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - name: configure - run: ./autogen.sh && ./configure - - name: build - run: make - - name: test - run: make check || (cat test/test-suite.log; cat test/start.log; cat test/remote.log; false) -# - name: clang-tidy check -# uses: muxee/clang-tidy-action@0.0.1-rc1 -# - name: SonarCloud Scan -# uses: SonarSource/sonarcloud-github-action@v1.1 + - name: Build dependencies + run: sudo apt install tree tshark + - uses: actions/checkout@v1 + - name: Generate and run configure script + run: ./autogen.sh && ./configure + - name: Build daemon + run: make + - name: Unit tests + run: make check || (cat test/test-suite.log; cat test/start.log; cat test/remote.log; false) +# - name: clang-tidy check +# uses: muxee/clang-tidy-action@0.0.1-rc1 +# - name: SonarCloud Scan +# uses: SonarSource/sonarcloud-github-action@v1.1 + - name: Installation + run: make install DESTDIR=/tmp/tok; tree /tmp/tok +