Justfile 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. all: build test xtests
  2. all-release: build-release test-release xtests-release
  3. export DOG_DEBUG := ""
  4. # compiles the dog binary
  5. @build:
  6. cargo build
  7. # compiles the dog binary (in release mode)
  8. @build-release:
  9. cargo build --release --verbose
  10. strip target/release/dog
  11. # runs unit tests
  12. @test:
  13. cargo test --all -- --quiet
  14. # runs unit tests (in release mode)
  15. @test-release:
  16. cargo test --release --all --verbose
  17. # runs extended tests
  18. @xtests:
  19. specsheet xtests/*.toml -O cmd.target.dog="${CARGO_TARGET_DIR:-../target}/debug/dog"
  20. # runs extended tests (in release mode)
  21. @xtests-release:
  22. specsheet xtests/*.toml -O cmd.target.dog="${CARGO_TARGET_DIR:-../target}/release/dog"
  23. # renders the documentation
  24. @doc args="":
  25. cargo doc --no-deps --all {{args}}
  26. # runs fuzzing on the dns crate
  27. @fuzz:
  28. cargo +nightly fuzz --version
  29. cd dns; cargo +nightly fuzz run fuzz_parsing -- -jobs=`nproc` -workers=`nproc` -runs=69105
  30. # prints out the data that caused crashes during fuzzing as hexadecimal
  31. @fuzz-hex:
  32. for crash in dns/fuzz/artifacts/fuzz_parsing/crash-*; do echo; echo $crash; hexyl $crash; done
  33. # removes fuzz log files
  34. @fuzz-clean:
  35. rm dns/fuzz/fuzz-*.log
  36. # lints the code
  37. @clippy:
  38. touch dns/src/lib.rs
  39. cargo clippy
  40. # generates a code coverage report using tarpaulin via docker
  41. @coverage-docker:
  42. docker run --security-opt seccomp=unconfined -v "${PWD}:/volume" xd009642/tarpaulin cargo tarpaulin --all --out Html
  43. # updates versions, and checks for outdated ones
  44. @update:
  45. cargo update; cargo outdated
  46. cd dns/fuzz; cargo update; cargo outdated
  47. # builds the man pages
  48. @man:
  49. mkdir -p "${CARGO_TARGET_DIR:-target}/man"
  50. pandoc --standalone -f markdown -t man man/dog.1.md > "${CARGO_TARGET_DIR:-target}/man/dog.1"
  51. # builds and previews the man page
  52. @man-preview: man
  53. man "${CARGO_TARGET_DIR:-target}/man/dog.1"