Skip to content

Commit 0871427

Browse files
committed
linux_and_macos.yml: Let make continue on errors to improve reporting
1 parent d36828a commit 0871427

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/linux_and_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
151151
- name: '[LV] Run "make"'
152152
run: |-
153-
make -C build_lv -j2 VERBOSE=1
153+
make -C build_lv -j2 -k VERBOSE=1
154154
155155
- name: '[LV] Run "make install"'
156156
run: |-
@@ -185,7 +185,7 @@ jobs:
185185
run: |-
186186
set -x -o pipefail
187187
188-
make -C build_plugins -j2 VERBOSE=1
188+
make -C build_plugins -j2 -k VERBOSE=1
189189
190190
# Detect and deny underlinking
191191
! find -name \*.so | sort | xargs ldd -r | grep -F 'undefined symbol'

0 commit comments

Comments
 (0)