From fcdfb5b700062e032d456c76b47c945297d88148 Mon Sep 17 00:00:00 2001 From: Brad Campbell Date: Wed, 29 Jan 2025 01:11:59 -0500 Subject: [PATCH] lr1110: ignore library compile warnings in CI --- lr1110/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lr1110/Makefile b/lr1110/Makefile index 3b83c109a..fa677c795 100644 --- a/lr1110/Makefile +++ b/lr1110/Makefile @@ -136,4 +136,7 @@ override CFLAGS += \ $(LIBNAME)_SRCS := $(OUR_CSRCS) $(UNCHANGED_CSRCS) $(CHANGED_CSRCS) +# Avoid failing in CI due to warnings in the library. +override CPPFLAGS_$(LIBNAME) += -Wno-error + include $(TOCK_USERLAND_BASE_DIR)/TockLibrary.mk \ No newline at end of file