Install tshark in runner

This commit is contained in:
Joachim Nilsson 2019-12-16 10:58:39 +01:00 committed by GitHub
parent 731078325a
commit 4bbb813f1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,18 +4,23 @@ on: [push]
jobs: jobs:
build: build:
name: sysklogd ci
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - name: Build dependencies
- name: configure run: sudo apt install tree tshark
run: ./autogen.sh && ./configure - uses: actions/checkout@v1
- name: build - name: Generate and run configure script
run: make run: ./autogen.sh && ./configure
- name: test - name: Build daemon
run: make check || (cat test/test-suite.log; cat test/start.log; cat test/remote.log; false) run: make
# - name: clang-tidy check - name: Unit tests
# uses: muxee/clang-tidy-action@0.0.1-rc1 run: make check || (cat test/test-suite.log; cat test/start.log; cat test/remote.log; false)
# - name: SonarCloud Scan # - name: clang-tidy check
# uses: SonarSource/sonarcloud-github-action@v1.1 # 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