From 087142747aa95554406693dda62edcb76c55f6cc Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Mon, 23 Dec 2024 21:08:57 +0100 Subject: [PATCH] linux_and_macos.yml: Let make continue on errors to improve reporting --- .github/workflows/linux_and_macos.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux_and_macos.yml b/.github/workflows/linux_and_macos.yml index 9390c217..dfd4990c 100644 --- a/.github/workflows/linux_and_macos.yml +++ b/.github/workflows/linux_and_macos.yml @@ -150,7 +150,7 @@ jobs: - name: '[LV] Run "make"' run: |- - make -C build_lv -j2 VERBOSE=1 + make -C build_lv -j2 -k VERBOSE=1 - name: '[LV] Run "make install"' run: |- @@ -185,7 +185,7 @@ jobs: run: |- set -x -o pipefail - make -C build_plugins -j2 VERBOSE=1 + make -C build_plugins -j2 -k VERBOSE=1 # Detect and deny underlinking ! find -name \*.so | sort | xargs ldd -r | grep -F 'undefined symbol'