From 4bf2933f4a8385d621053df73e44f5b69520f916 Mon Sep 17 00:00:00 2001 From: Chad Ostrowski <221614+chadoh@users.noreply.github.com> Date: Wed, 8 Nov 2023 14:28:03 -0500 Subject: [PATCH] chore: don't force rebuild during build-test-wasms --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 000b2aef5..cef8e9c67 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all: check build test +all: build test export RUSTFLAGS=-Dwarnings -Dclippy::all -Dclippy::pedantic @@ -61,7 +61,7 @@ build: build_rust build_go build-libpreflight: Cargo.lock cd cmd/soroban-rpc/lib/preflight && cargo build --target $(CARGO_BUILD_TARGET) --profile release-with-panic-unwind -build-test-wasms: Cargo.lock +build-test-wasms: cargo build --package 'test_*' --profile test-wasms --target wasm32-unknown-unknown build-test: build-test-wasms install_rust