organic/justfile
Chris Cochrun 9c3f35dda0
Some checks failed
/ clippy (push) Failing after 2m6s
/ test (push) Failing after 1m59s
sorta working
2026-03-31 09:47:33 -05:00

31 lines
576 B
Makefile

path := "-p ~/docs/site/"
verbose := "-v"
# export RUSTC_WRAPPER := "sccache"
# export RUST_LOG := "debug"
default:
just --list
build:
cargo build
build-release:
cargo build --release
run:
cargo run -- {{verbose}} {{path}}
run-release:
cargo run --release
clean:
cargo clean
test:
cargo nextest run
bench:
export NEXTEST_EXPERIMENTAL_BENCHMARKS=1
cargo nextest bench
profile:
samply record cargo run --release -- {{verbose}} {{path}}
alias b := build
alias r := run
alias br := build-release
alias rr := run-release
alias c := clean