From 11de16e821286bd39d0711ad8aaa17bc8a2f39a8 Mon Sep 17 00:00:00 2001 From: pritsheth Date: Fri, 16 Feb 2024 14:05:48 -0800 Subject: [PATCH] Remove build-test-wasms from makefile --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index f0ad7e89..5a90fe5d 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ Cargo.lock: Cargo.toml # cargo install soroban-cli --version 20.2.0 # cargo install --path ./cmd/crates/soroban-test/tests/fixtures/hello --root ./target --debug --quiet -install: install_rust build-libpreflight +install: build-libpreflight go install -ldflags="${GOLDFLAGS}" ${MACOS_MIN_VER} ./... build_rust: Cargo.lock @@ -58,12 +58,12 @@ 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 - cargo build --package 'test_*' --profile test-wasms --target wasm32-unknown-unknown +#build-test-wasms: Cargo.lock + #cargo build --package 'test_*' --profile test-wasms --target wasm32-unknown-unknown -build-test: build-test-wasms install_rust +#build-test: build-test-wasms install_rust -test: build-test +test: cargo test e2e-test: