sysklogd/.github/workflows/ccpp.yml
Joachim Wiberg fb4412b62c .github: Disable silent rules in build, use install-strip
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2021-01-14 18:48:30 +01:00

29 lines
924 B
YAML

name: C/C++ CI
on: [push]
jobs:
build:
name: sysklogd ci
runs-on: ubuntu-latest
steps:
- name: Update packagage cache ...
run: sudo apt-get update
- name: Install build dependencies ...
run: sudo DEBIAN_FRONTEND=noninteractive apt-get install -qq -y tree tshark
- uses: actions/checkout@v1
- name: Generate and run configure script ...
run: ./autogen.sh && ./configure --disable-silent-rules
- name: Build project ...
run: make
- name: Run project unit tests ...
run: sudo make check || (cat 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: Check project installation ...
run: make install-strip DESTDIR=/tmp/tok; tree /tmp/tok