1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00
actix-extras/justfile

114 lines
3.5 KiB
Makefile
Raw Normal View History

2024-02-14 02:19:29 +01:00
# depends on:
# - https://crates.io/crates/fd-find
# - https://crates.io/crates/cargo-check-external-types
2023-11-03 20:44:12 +01:00
_list:
@just --list
2024-06-11 04:52:02 +02:00
toolchain := ""
msrv := ```
cargo metadata --format-version=1 \
| jq -r 'first(.packages[] | select(.source == null and .rust_version)) | .rust_version' \
| sed -E 's/^1\.([0-9]{2})$/1\.\1\.0/'
```
msrv_rustup := "+" + msrv
# Run Clippy over workspace.
2024-06-11 04:52:02 +02:00
[group("lint")]
clippy:
cargo {{ toolchain }} clippy --workspace --all-targets --all-features
2024-01-06 22:02:36 +01:00
# Format workspace.
2024-06-11 04:52:02 +02:00
[group("lint")]
fmt: update-readmes
2024-01-06 22:08:09 +01:00
cargo +nightly fmt
fd --hidden --extension=yml --extension=md --exec-batch npx -y prettier --write
2024-01-06 22:02:36 +01:00
# Update READMEs from crate root documentation.
2024-06-11 04:52:02 +02:00
[group("lint")]
update-readmes:
2024-01-06 22:02:36 +01:00
cd ./actix-cors && cargo rdme --force
cd ./actix-identity && cargo rdme --force
2024-07-20 08:23:21 +02:00
cd ./actix-session && cargo rdme --force
2024-07-20 07:59:10 +02:00
fd README.md --exec-batch npx -y prettier --write
2024-01-06 22:02:36 +01:00
2024-06-20 02:55:14 +02:00
# Test workspace code.
2024-06-20 02:58:25 +02:00
[group("test")]
2024-06-20 02:55:14 +02:00
test:
cargo {{ toolchain }} nextest run --workspace --all-features
# Test workspace code and docs.
2024-06-20 02:58:25 +02:00
[group("test")]
2024-06-20 03:57:44 +02:00
test-all: test test-docs
# Test workspace and collect coverage info.
[private]
test-coverage:
cargo {{ toolchain }} llvm-cov nextest --no-report --all-features
cargo {{ toolchain }} llvm-cov --doc --no-report --all-features
# Test workspace and generate Codecov report.
test-coverage-codecov: test-coverage
cargo {{ toolchain }} llvm-cov report --doctests --codecov --output-path=codecov.json
# Test workspace and generate LCOV report.
test-coverage-lcov: test-coverage
cargo {{ toolchain }} llvm-cov report --doctests --lcov --output-path=lcov.info
2024-06-20 02:55:14 +02:00
2024-06-11 04:52:02 +02:00
# Test workspace docs.
[group("test")]
[group("docs")]
test-docs:
cargo {{ toolchain }} test --doc --workspace --all-features --no-fail-fast -- --nocapture
2023-11-03 20:44:12 +01:00
# Document crates in workspace.
2024-06-11 04:52:02 +02:00
[group("docs")]
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"
2023-11-03 20:44:12 +01:00
# Document crates in workspace and watch for changes.
2024-06-11 04:52:02 +02:00
[group("docs")]
2023-11-03 20:44:12 +01:00
doc-watch:
2024-06-11 04:52:02 +02:00
@just doc --open
cargo watch -- just doc
2023-11-03 20:44:12 +01:00
# Check for unintentional external type exposure on all crates in workspace.
2024-06-11 04:52:02 +02:00
[group("lint")]
check-external-types-all:
2023-11-03 20:44:12 +01:00
#!/usr/bin/env bash
set -euo pipefail
exit=0
for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do
2024-06-11 04:52:02 +02:00
if ! just toolchain={{ toolchain }} check-external-types-manifest "$f"; then exit=1; fi
2023-11-03 20:44:12 +01:00
echo
echo
done
exit $exit
# Check for unintentional external type exposure on all crates in workspace.
2024-06-11 04:52:02 +02:00
[group("lint")]
check-external-types-all-table:
2023-11-03 20:44:12 +01:00
#!/usr/bin/env bash
set -euo pipefail
for f in $(find . -mindepth 2 -maxdepth 2 -name Cargo.toml | grep -vE "\-codegen/|\-derive/|\-macros/"); do
echo
echo "Checking for $f"
2024-06-11 04:52:02 +02:00
just toolchain={{ toolchain }} check-external-types-manifest "$f" --output-format=markdown-table
2023-11-03 20:44:12 +01:00
done
# Check for unintentional external type exposure on a crate.
2024-06-11 04:52:02 +02:00
[group("lint")]
check-external-types-manifest manifest_path *extra_args="":
cargo {{ toolchain }} check-external-types --manifest-path "{{ manifest_path }}" {{ extra_args }}