From fabd3dadc96305eb65fbe0b5ecebc01d05e147aa Mon Sep 17 00:00:00 2001 From: Gleb Chesnokov Date: Tue, 26 Jul 2022 15:34:39 +0300 Subject: [PATCH] github: Ignore errors when building SCST for Coverity The GitHub virtual environment provides Ubuntu with a kernel that doesn't support FCoE, causing the build to fail: ERROR: modpost: "fc_seq_release" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined! ERROR: modpost: "fc_fc4_register_provider" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined! ERROR: modpost: "fc_lport_iterate" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined! ERROR: modpost: "fc_seq_els_rsp_send" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined! ERROR: modpost: "fc_seq_assign" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined! ERROR: modpost: "_fc_frame_alloc" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined! ERROR: modpost: "fc_fill_reply_hdr" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined! ERROR: modpost: "fc_exch_done" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined! ERROR: modpost: "fc_fc4_deregister_provider" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined! ERROR: modpost: "fc_frame_alloc_fill" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined! WARNING: modpost: suppressed 4 unresolved symbol warnings because there were too many) Ignore these errors and continue building SCST to get all the information for analysis. --- .github/workflows/coverity.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 8571ace66..0fb12aed1 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -63,7 +63,7 @@ jobs: # Command to pass to cov-build. # # Default: 'make' - command: 'make cov-build' + command: 'make -i cov-build' # (Informational) The source version being built. #