From 2ddc948d30abb1bbc0a1883e8c29755f3254706e Mon Sep 17 00:00:00 2001 From: wllenyj Date: Mon, 22 Aug 2022 17:55:31 +0800 Subject: [PATCH] Makefile: add dragonball components. Enable ci to run dragonball unit tests. Fixes: #4899 Signed-off-by: wllenyj --- Makefile | 1 + src/dragonball/Makefile | 3 +++ 2 files changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 4d2be6b4d8..6eca68ae1b 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ COMPONENTS = COMPONENTS += libs COMPONENTS += agent +COMPONENTS += dragonball COMPONENTS += runtime COMPONENTS += runtime-rs diff --git a/src/dragonball/Makefile b/src/dragonball/Makefile index ca4216b1f7..c4955cf856 100644 --- a/src/dragonball/Makefile +++ b/src/dragonball/Makefile @@ -15,6 +15,9 @@ clippy: -- \ -D warnings +vendor: + @echo "INFO: vendor do nothing.." + format: @echo "INFO: cargo fmt..." cargo fmt -- --check