From b5525289ebd19d5707b623c0da2f24e1163fc856 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Thor=C3=A9n?= Date: Wed, 26 Aug 2020 17:02:56 +0800 Subject: [PATCH] Refactor Makefile and remove old task (#107) --- Makefile | 4 ++-- waku.nimble | 5 ----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index a26aa51cc..0be828a89 100644 --- a/Makefile +++ b/Makefile @@ -88,9 +88,9 @@ protocol2: echo -e $(BUILD_MSG) "build/$@" && \ $(ENV_SCRIPT) nim protocol2 $(NIM_PARAMS) waku.nims -wakutest2: +test2: echo -e $(BUILD_MSG) "build/$@" && \ - $(ENV_SCRIPT) nim wakutest2 $(NIM_PARAMS) waku.nims + $(ENV_SCRIPT) nim test2 $(NIM_PARAMS) waku.nims wakuexample2: echo -e $(BUILD_MSG) "build/$@" && \ diff --git a/waku.nimble b/waku.nimble index ed3c967e7..0a6c91342 100644 --- a/waku.nimble +++ b/waku.nimble @@ -53,11 +53,6 @@ task wakusim, "Build Waku simulation tools": task protocol2, "Build the experimental Waku protocol": buildBinary "waku_protocol2", "waku/protocol/v2/", "-d:chronicles_log_level=TRACE" -task wakutest2, "Build Experimental Waku tests": - let name = "v2/test_waku" - buildBinary name, "tests/", "-d:chronicles_log_level=DEBUG" - exec "build/" & name - task wakunode2, "Build Experimental Waku cli": buildBinary "wakunode2", "waku/node/v2/", "-d:chronicles_log_level=TRACE"