.github: Disable silent rules in build, use install-strip

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
Joachim Wiberg 2021-01-14 18:48:30 +01:00
parent a95c4baeda
commit fb4412b62c
1 changed files with 2 additions and 2 deletions

View File

@ -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