mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-05-21 12:24:29 +02:00
Add tests to coverity scan
This commit is contained in:
parent
6fd9c200ac
commit
26282ef152
3
.github/workflows/coverity-scan-develop.yml
vendored
3
.github/workflows/coverity-scan-develop.yml
vendored
|
|
@ -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"
|
||||
|
|
|
|||
3
.github/workflows/coverity-scan-fixes.yml
vendored
3
.github/workflows/coverity-scan-fixes.yml
vendored
|
|
@ -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"
|
||||
|
|
|
|||
4
Makefile
4
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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue