9aedb12bfc
* Refactor documentation, ef_tests makefile * Add makefile to root * Tidy readme * Fix readme badges * Tidy logs * Add terminalize gif * Update readme image * Update readme image * Tidy logs * Update readme image * Update readme * Update readme * Fix book link * Update makefiles * Update book * Fix link in book * Add readme for book * Remove old docs, move api spec YAML * Fix eth2/ dir readme * Add readme for lcli * Add about this book section * Minor formatting improvements * Address mehdi's comments
31 lines
828 B
Makefile
31 lines
828 B
Makefile
.PHONY: tests
|
|
|
|
EF_TESTS = "tests/ef_tests"
|
|
|
|
# Builds the entire workspace in release (optimized).
|
|
#
|
|
# Binaries will most likely be found in `./target/release`
|
|
release:
|
|
cargo build --release --all
|
|
|
|
# Runs the full workspace tests, without downloading any additional test
|
|
# vectors.
|
|
test:
|
|
cargo test --all --all-features --release
|
|
|
|
# Runs the entire test suite, downloading test vectors if required.
|
|
test-full: make-ef-tests test
|
|
|
|
# Runs the makefile in the `ef_tests` repo.
|
|
#
|
|
# May download and extract an archive of test vectors from the ethereum
|
|
# repositories. At the time of writing, this was several hundred MB of
|
|
# downloads which extracts into several GB of test vectors.
|
|
make-ef-tests:
|
|
make -C $(EF_TESTS)
|
|
|
|
# Performs a `cargo` clean and cleans the `ef_tests` directory.
|
|
clean:
|
|
cargo clean
|
|
make -C $(EF_TESTS) clean
|