Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,10 @@ k256 = { version = "0.13.4", default-features = false, features = ["ecdsa", "std
quick_cache = "0.6.16"
# End of EVM dependencies

[profile.dev]
# Keep backtraces useful while reducing debug-link overhead in local builds.
debug = "line-tables-only"

[profile.rust-analyzer-optimized]
inherits = "dev"
debug = false
Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ test-all: ## Runs test suite using nextest, across the whole workspace
test-default-features: ## Runs test suite using default features
@cargo nextest run --no-fail-fast --status-level skip

test-fast: ## Runs a fast local test suite (skips guest builds and docker tests)
@SKIP_GUEST_BUILD=1 SP1_SKIP_PROGRAM_BUILD=1 SOV_TEST_SKIP_DOCKER=1 cargo nextest run --no-fail-fast --status-level skip --all-features --profile ci

docker-pull-test-images: ## Pre-pull docker images used by integration tests
docker pull ghcr.io/sovereign-labs/celestia-validator-devnet:v6.2.2-mocha
docker pull ghcr.io/sovereign-labs/celestia-bridge-devnet:v0.28.2-mocha

install-dev-tools: ## Installs all necessary dev tools
install-dev-tools: install-cargo-tools install-risc0-toolchain install-sp1-toolchain
rustup update nightly
Expand Down
Loading