From 4b07a2bfac2b1ab47c253fb91ba66410543a12fe Mon Sep 17 00:00:00 2001 From: pritsheth Date: Fri, 16 Feb 2024 14:39:28 -0800 Subject: [PATCH] Uncomment install_rust --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 5a90fe5d..278f6713 100644 --- a/Makefile +++ b/Makefile @@ -40,11 +40,11 @@ CARGO_BUILD_TARGET ?= $(shell rustc -vV | sed -n 's|host: ||p') Cargo.lock: Cargo.toml cargo update --workspace -#install_rust: Cargo.lock -# cargo install soroban-cli --version 20.2.0 -# cargo install --path ./cmd/crates/soroban-test/tests/fixtures/hello --root ./target --debug --quiet +install_rust: Cargo.lock + #cargo install soroban-cli --version 20.2.0 + #cargo install --path ./cmd/crates/soroban-test/tests/fixtures/hello --root ./target --debug --quiet -install: build-libpreflight +install: install_rust 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 +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: +test: build-test cargo test e2e-test: