mirror of
https://github.com/urbit/ares.git
synced 2024-11-22 15:08:54 +03:00
a7005c7049
* Update README.md * Rename ares -> sword * Workspace * Cargo-only CI
9 lines
356 B
Bash
Executable File
9 lines
356 B
Bash
Executable File
#!/bin/bash
|
|
export CARGO_INCREMENTAL=0
|
|
export RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort"
|
|
export RUSTDOCFLAGS="-Cpanic=abort"
|
|
cargo clean
|
|
cargo +nightly build
|
|
cargo +nightly test
|
|
grcov . -s . --binary-path ./target/debug/ -t html --branch --ignore-not-existing -o coverage
|