From ac7ffe8fb012d1153bc4a21a3073be2b73e9237d Mon Sep 17 00:00:00 2001 From: Luni-4 Date: Wed, 15 Sep 2021 16:05:12 +0200 Subject: [PATCH] Fix mdbook building on CI The `search` feature has been removed from mdbook, so building the tool with it leads to some dependency conflicts --- .taskcluster.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.taskcluster.yml b/.taskcluster.yml index 36be122c3..fdcd11930 100644 --- a/.taskcluster.yml +++ b/.taskcluster.yml @@ -69,7 +69,7 @@ tasks: - "git clone --quiet ${repository} && cd rust-code-analysis && git -c advice.detachedHead=false checkout ${head_rev} && - cargo install mdbook --no-default-features --features search,output --vers \"^0.1.0\" && + cargo install mdbook --no-default-features --features output --vers \"^0.1.0\" && cargo doc --release && cd rust-code-analysis-book && mdbook build &&