Skip to content

Commit

Permalink
Uncomment install_rust
Browse files Browse the repository at this point in the history
  • Loading branch information
psheth9 committed Feb 16, 2024
1 parent 11de16e commit 4b07a2b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 4b07a2b

Please sign in to comment.