Skip to content

Commit 3be883e

Browse files
committed
do not perform silent make builds in CI
1 parent 4d04f41 commit 3be883e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/CI-unixish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ jobs:
609609
run: |
610610
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
611611
# compile with verification and ast matchers
612-
make -j$(nproc) -s CXXOPTS="-g -O2 -w" CPPOPTS="-DCHECK_INTERNAL -DHAVE_BOOST" MATCHCOMPILER=yes VERIFY=1
612+
make -j$(nproc) CXXOPTS="-g -O2 -w" CPPOPTS="-DCHECK_INTERNAL -DHAVE_BOOST" MATCHCOMPILER=yes VERIFY=1
613613
614614
- name: CMake
615615
run: |

.github/workflows/scriptcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: build cppcheck
4040
run: |
4141
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
42-
make -j$(nproc) -s CXXOPTS="-w"
42+
make -j$(nproc) CXXOPTS="-w"
4343
strip -s ./cppcheck
4444
4545
scriptcheck:

.github/workflows/selfcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
5757
# valgrind cannot handle DWARF 5 yet so force version 4
5858
# work around performance regression with -inline-deferral
59-
make -j$(nproc) -s CXXOPTS="-O2 -w -gdwarf-4" CPPOPTS="-DHAVE_BOOST -mllvm -inline-deferral" MATCHCOMPILER=yes
59+
make -j$(nproc) CXXOPTS="-O2 -w -gdwarf-4" CPPOPTS="-DHAVE_BOOST -mllvm -inline-deferral" MATCHCOMPILER=yes
6060
env:
6161
CC: clang-14
6262
CXX: clang++-14

0 commit comments

Comments
 (0)