clean up justfile
Some checks failed
ci / Check build (push) Has been cancelled
ci / Check formatting (push) Has been cancelled
ci / Check Documentation Build (push) Has been cancelled
ci / Clippy (push) Has been cancelled
ci / Check build (pull_request) Has been cancelled
ci / Check formatting (pull_request) Has been cancelled
ci / Check Documentation Build (pull_request) Has been cancelled
ci / Clippy (pull_request) Has been cancelled
Some checks failed
ci / Check build (push) Has been cancelled
ci / Check formatting (push) Has been cancelled
ci / Check Documentation Build (push) Has been cancelled
ci / Clippy (push) Has been cancelled
ci / Check build (pull_request) Has been cancelled
ci / Check formatting (pull_request) Has been cancelled
ci / Check Documentation Build (pull_request) Has been cancelled
ci / Clippy (pull_request) Has been cancelled
This commit is contained in:
39
justfile
39
justfile
@@ -1,24 +1,25 @@
|
|||||||
check: check-zynq check-tools check-boot-image
|
all: check-all build-all clean-all fmt-all clippy-all
|
||||||
|
|
||||||
[working-directory: 'zynq']
|
check-all: (check "zynq") (check "tools") (check "zynq7000-boot-image")
|
||||||
check-zynq:
|
clean-all: (clean "zynq") (clean "tools") (clean "zynq7000-boot-image")
|
||||||
cargo check
|
build-all: (build "zynq") (build "tools") (build "zynq7000-boot-image")
|
||||||
[working-directory: 'tools']
|
fmt-all: (fmt "zynq") (fmt "tools") (fmt "zynq7000-boot-image")
|
||||||
check-tools:
|
clippy-all: (clippy "zynq") (clippy "tools") (clippy "zynq7000-boot-image")
|
||||||
cargo check
|
|
||||||
[working-directory: 'zynq7000-boot-image']
|
|
||||||
check-boot-image:
|
|
||||||
cargo check
|
|
||||||
|
|
||||||
[working-directory: 'zynq']
|
check target:
|
||||||
build-zynq:
|
cd {{target}} && cargo check
|
||||||
cargo check
|
|
||||||
[working-directory: 'tools']
|
build target:
|
||||||
build-tools:
|
cd {{target}} && cargo build
|
||||||
cargo check
|
|
||||||
[working-directory: 'zynq7000-boot-image']
|
clean target:
|
||||||
build-boot-image:
|
cd {{target}} && cargo clean
|
||||||
cargo check
|
|
||||||
|
fmt target:
|
||||||
|
cd {{target}} && cargo fmt --all -- --check
|
||||||
|
|
||||||
|
clippy target:
|
||||||
|
cd {{target}} && cargo clippy -- -D warnings
|
||||||
|
|
||||||
[working-directory: 'zynq-boot-image/staging']
|
[working-directory: 'zynq-boot-image/staging']
|
||||||
bootgen:
|
bootgen:
|
||||||
|
|||||||
Reference in New Issue
Block a user