From 7ccdd4c810355ca2fe50243f1074229ccc191032 Mon Sep 17 00:00:00 2001 From: Erik Kundt Date: Mon, 3 Nov 2025 10:48:38 +0100 Subject: [PATCH] ci: Activate all features when building docs Currently, `cargo doc` fails on warnings for missing links to `qcheck` and `radicle_git_ref_format`. This will enable the required features to compile those modules in. --- .radicle/ambient.yaml | 2 +- .radicle/native.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.radicle/ambient.yaml b/.radicle/ambient.yaml index 881edf3a..a0c85a73 100644 --- a/.radicle/ambient.yaml +++ b/.radicle/ambient.yaml @@ -18,7 +18,7 @@ plan: export PATH="/root/.cargo/bin:$PATH" export RUSTDOCFLAGS='-D warnings' - cargo doc --workspace --no-deps + cargo doc --workspace --no-deps --all-features # Prepare source tree for building a Debian package. - action: shell diff --git a/.radicle/native.yaml b/.radicle/native.yaml index 4cee72e8..c75c48b5 100644 --- a/.radicle/native.yaml +++ b/.radicle/native.yaml @@ -7,5 +7,5 @@ shell: | cargo fmt --check cargo clippy --all-targets --workspace -- --deny warnings cargo build --all-targets --workspace - cargo doc --workspace --no-deps + cargo doc --workspace --no-deps --all-features cargo test --workspace --no-fail-fast