From fb4412b62ca2edc711b76eb72f061a0291e18fa7 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Thu, 14 Jan 2021 18:48:30 +0100 Subject: [PATCH] .github: Disable silent rules in build, use install-strip Signed-off-by: Joachim Wiberg --- .github/workflows/ccpp.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 9197532..8f7e295 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -14,7 +14,7 @@ jobs: 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 + run: ./autogen.sh && ./configure --disable-silent-rules - name: Build project ... run: make - name: Run project unit tests ... @@ -24,5 +24,5 @@ jobs: # - name: SonarCloud Scan # uses: SonarSource/sonarcloud-github-action@v1.1 - name: Check project installation ... - run: make install DESTDIR=/tmp/tok; tree /tmp/tok + run: make install-strip DESTDIR=/tmp/tok; tree /tmp/tok