We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f9e13c commit 7170fe2Copy full SHA for 7170fe2
Makefile
@@ -392,7 +392,12 @@ include cln-grpc/Makefile
392
endif
393
include plugins/Makefile
394
include tests/plugins/Makefile
395
+
396
+# Only include fuzz tests if OpenSSL >= 3.0, will be disabled on ubuntu focal
397
+OPENSSL_VERSION := $(shell openssl version | sed -n 's/OpenSSL \([0-9]\+\)\..*/\1/p')
398
+ifneq ($(shell test $(OPENSSL_VERSION) -ge 3 && echo yes),)
399
include tests/fuzz/Makefile
400
+endif
401
402
ifneq ($V,1)
403
MSGGEN_ARGS := -s
0 commit comments