From 26282ef15299b314ffe13073eedb067138b5053b Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Sun, 16 Oct 2022 11:04:35 +0100 Subject: [PATCH] Add tests to coverity scan --- .github/workflows/coverity-scan-develop.yml | 3 +-- .github/workflows/coverity-scan-fixes.yml | 3 +-- Makefile | 4 +++- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/coverity-scan-develop.yml b/.github/workflows/coverity-scan-develop.yml index c26ba0de..1b7c9b1a 100644 --- a/.github/workflows/coverity-scan-develop.yml +++ b/.github/workflows/coverity-scan-develop.yml @@ -22,5 +22,4 @@ jobs: project: "eclipse/mosquitto" token: ${{ secrets.COVERITY_SCAN_TOKEN }} email: ${{ secrets.COVERITY_SCAN_EMAIL }} - command: "make binary" - + command: "make binary-all" diff --git a/.github/workflows/coverity-scan-fixes.yml b/.github/workflows/coverity-scan-fixes.yml index 3337b884..7c2ab982 100644 --- a/.github/workflows/coverity-scan-fixes.yml +++ b/.github/workflows/coverity-scan-fixes.yml @@ -22,5 +22,4 @@ jobs: project: "eclipse/mosquitto" token: ${{ secrets.COVERITY_SCAN_TOKEN }} email: ${{ secrets.COVERITY_SCAN_EMAIL }} - command: "make binary" - + command: "make binary-all" diff --git a/Makefile b/Makefile index da2e65c2..9fe6caa7 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ DISTFILES= \ .PHONY : all mosquitto api docs binary check clean reallyclean test test-compile install uninstall dist sign copy localdocker -all : $(MAKE_ALL) test-compile +all : $(MAKE_ALL) api : mkdir -p api p @@ -59,6 +59,8 @@ docs : binary : mosquitto +binary-all : mosquitto test-compile + mosquitto : ifeq ($(UNAME),Darwin) $(error Please compile using CMake on Mac OS X)