14 lines
667 B
Makefile
14 lines
667 B
Makefile
before_commit:
|
|
cargo clippy --release --all-targets -- -D warnings
|
|
cargo clippy --all-targets -- -D warnings
|
|
cargo build --release --all-targets
|
|
cargo build --all-targets
|
|
cargo build --profile=release-lto --package gen_large_yaml --bin gen_large_yaml --manifest-path tools/gen_large_yaml/Cargo.toml
|
|
cargo build --profile=release-lto --package bench_compare --bin bench_compare --manifest-path tools/bench_compare/Cargo.toml
|
|
|
|
ethi_bench:
|
|
cargo build --release --all-targets
|
|
cd ../Yaml-rust && cargo build --release --all-targets
|
|
cd ../serde-yaml/ && cargo build --release --all-targets
|
|
cd ../libfyaml/build && ninja
|
|
cargo bench_compare run_bench
|