From 95d7f375206adc59bd3da3a158f65af662f984c0 Mon Sep 17 00:00:00 2001 From: Georgia Garcia Date: Thu, 31 Jul 2025 13:02:07 -0300 Subject: [PATCH] coverity: remove log retrieving step temporarily Right now coverity is running in two steps, one to collect logs in case of failures, and a different one to actually send the data to coverity. The log collection step is failing because when collecting data for python with the new version of coverity, build-log.txt is not generated. The whole way we build with coverity might need changing, but currently this patch is removing the log collection so the pipeline passes. Signed-off-by: Georgia Garcia --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index aa1119748..a4454eaa5 100644 --- a/Makefile +++ b/Makefile @@ -54,9 +54,6 @@ snapshot: clean .PHONY: coverity coverity: snapshot cd $(SNAPSHOT_NAME)/libraries/libapparmor && ./configure --with-python - $(foreach dir, libraries/libapparmor utils, \ - coverity capture --dir $(COVERITY_DIR) --project-dir $(SNAPSHOT_NAME)/$(dir); \ - mv $(COVERITY_DIR)/build-log.txt $(COVERITY_DIR)/build-log-python-$(subst /,.,$(dir)).txt ;) cov-build --dir $(COVERITY_DIR) -- sh -c \ "$(foreach dir, $(filter-out utils profiles tests, $(DIRS)), \ $(MAKE) -j $$(nproc) -C $(SNAPSHOT_NAME)/$(dir);) "