mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 15:51:06 +01:00
build: group recipes
This commit is contained in:
parent
5368569d00
commit
e4bb5ed355
48
justfile
48
justfile
@ -5,6 +5,8 @@
|
|||||||
_list:
|
_list:
|
||||||
@just --list
|
@just --list
|
||||||
|
|
||||||
|
toolchain := ""
|
||||||
|
|
||||||
msrv := ```
|
msrv := ```
|
||||||
cargo metadata --format-version=1 \
|
cargo metadata --format-version=1 \
|
||||||
| jq -r 'first(.packages[] | select(.source == null and .rust_version)) | .rust_version' \
|
| jq -r 'first(.packages[] | select(.source == null and .rust_version)) | .rust_version' \
|
||||||
@ -13,52 +15,76 @@ msrv := ```
|
|||||||
msrv_rustup := "+" + msrv
|
msrv_rustup := "+" + msrv
|
||||||
|
|
||||||
# Run Clippy over workspace.
|
# Run Clippy over workspace.
|
||||||
clippy toolchain="":
|
[group("lint")]
|
||||||
|
clippy:
|
||||||
cargo {{ toolchain }} clippy --workspace --all-targets --all-features
|
cargo {{ toolchain }} clippy --workspace --all-targets --all-features
|
||||||
|
|
||||||
# Format workspace.
|
# Format workspace.
|
||||||
|
[group("lint")]
|
||||||
fmt: update-readmes
|
fmt: update-readmes
|
||||||
cargo +nightly fmt
|
cargo +nightly fmt
|
||||||
fd --hidden --extension=yml --extension=md --exec-batch npx -y prettier --write
|
fd --hidden --extension=yml --extension=md --exec-batch npx -y prettier --write
|
||||||
|
|
||||||
# Update READMEs from crate root documentation.
|
# Update READMEs from crate root documentation.
|
||||||
|
[group("lint")]
|
||||||
update-readmes:
|
update-readmes:
|
||||||
cd ./actix-cors && cargo rdme --force
|
cd ./actix-cors && cargo rdme --force
|
||||||
cd ./actix-session && cargo rdme --force
|
cd ./actix-session && cargo rdme --force
|
||||||
cd ./actix-identity && cargo rdme --force
|
cd ./actix-identity && cargo rdme --force
|
||||||
npx -y prettier --write $(fd README.md)
|
npx -y prettier --write $(fd README.md)
|
||||||
|
|
||||||
|
# Test workspace docs.
|
||||||
|
[group("test")]
|
||||||
|
[group("docs")]
|
||||||
|
test-docs:
|
||||||
|
cargo {{ toolchain }} test --doc --workspace --all-features --no-fail-fast -- --nocapture
|
||||||
|
|
||||||
# Document crates in workspace.
|
# Document crates in workspace.
|
||||||
doc:
|
[group("docs")]
|
||||||
RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --all-features
|
doc *args: && doc-set-workspace-crates
|
||||||
|
RUSTDOCFLAGS="--cfg=docsrs -Dwarnings" cargo +nightly doc --workspace --all-features {{ args }}
|
||||||
|
|
||||||
|
[private]
|
||||||
|
[group("docs")]
|
||||||
|
doc-set-workspace-crates:
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
(
|
||||||
|
echo "window.ALL_CRATES ="
|
||||||
|
cargo metadata --format-version=1 | jq '[.packages[] | select(.source == null) | .name]'
|
||||||
|
echo ";"
|
||||||
|
) > "$(cargo metadata --format-version=1 | jq -r '.target_directory')/doc/crates.js"
|
||||||
|
|
||||||
# Document crates in workspace and watch for changes.
|
# Document crates in workspace and watch for changes.
|
||||||
|
[group("docs")]
|
||||||
doc-watch:
|
doc-watch:
|
||||||
RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --all-features --open
|
@just doc --open
|
||||||
cargo watch -- RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace --all-features
|
cargo watch -- just doc
|
||||||
|
|
||||||
# Check for unintentional external type exposure on all crates in workspace.
|
# Check for unintentional external type exposure on all crates in workspace.
|
||||||
check-external-types-all toolchain="+nightly":
|
[group("lint")]
|
||||||
|
check-external-types-all:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
exit=0
|
exit=0
|
||||||
for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do
|
for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do
|
||||||
if ! just check-external-types-manifest "$f" {{toolchain}}; then exit=1; fi
|
if ! just toolchain={{ toolchain }} check-external-types-manifest "$f"; then exit=1; fi
|
||||||
echo
|
echo
|
||||||
echo
|
echo
|
||||||
done
|
done
|
||||||
exit $exit
|
exit $exit
|
||||||
|
|
||||||
# Check for unintentional external type exposure on all crates in workspace.
|
# Check for unintentional external type exposure on all crates in workspace.
|
||||||
check-external-types-all-table toolchain="+nightly":
|
[group("lint")]
|
||||||
|
check-external-types-all-table:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do
|
for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do
|
||||||
echo
|
echo
|
||||||
echo "Checking for $f"
|
echo "Checking for $f"
|
||||||
just check-external-types-manifest "$f" {{toolchain}} --output-format=markdown-table
|
just toolchain={{ toolchain }} check-external-types-manifest "$f" --output-format=markdown-table
|
||||||
done
|
done
|
||||||
|
|
||||||
# Check for unintentional external type exposure on a crate.
|
# Check for unintentional external type exposure on a crate.
|
||||||
check-external-types-manifest manifest_path toolchain="+nightly" *extra_args="":
|
[group("lint")]
|
||||||
cargo {{toolchain}} check-external-types --manifest-path "{{manifest_path}}" {{extra_args}}
|
check-external-types-manifest manifest_path *extra_args="":
|
||||||
|
cargo {{ toolchain }} check-external-types --manifest-path "{{ manifest_path }}" {{ extra_args }}
|
||||||
|
Loading…
Reference in New Issue
Block a user