From 214e5f9bb75a00a5261f1c116d7c55c57794ff17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Zemanovi=C4=8D?= Date: Wed, 21 Aug 2024 11:25:25 +0100 Subject: [PATCH] make build: exclude fuzz targets --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5411368330..8f232d1521 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ all-crates := $(foreach crate,$(crates), -p $(crate)) build: - $(cargo) build $(jobs) --workspace --exclude namada_benchmarks + $(cargo) build $(jobs) --workspace --exclude namada_benchmarks --exclude namada_fuzz build-test: $(cargo) +$(nightly) build --tests $(jobs)