This is the minimal version of running Danger in Rust. It is a cargo module which expects the JSON DSL from Danger JS and provides a type-safe way to interact with it from inside the app.
- Figure out the distribution method to get it running on other people's CI
- Compiling a Rust dangerfile
danger.rs
and injecting that with the additional runtime work (passing data in/out) - Creating commands for
ci
,pr
,local
- Error handling
I'm learning everything from scratch, so, some of these may take quite a while.
cargo run --bin danger-rust
This is how you can test out how things work:
# Pipe the JSON in and potentially compile + exec
cat fixtures/danger-js-697.json | cargo run --bin danger-rust
# Or, build then compile
# build the binary
cargo build --bin danger-rust
# Run it and pipe in the JSON to STDIN
cat fixtures/danger-js-697.json | ./target/debug/danger-rust
Update the Rust Types from the JSON schema of Danger's DSL
cargo run --bin update_types
Grab a Danger JS incoming JSON example
# uses danger-js the `--dangerfile xxyy` is a bug
danger pr https://github.com/danger/danger-js/pull/697 --json > fixtures/danger-js-697.json --dangerfile LICENSE