From 4127b2c0a6a2f92320f54b742ab01c95896bddc9 Mon Sep 17 00:00:00 2001 From: Devin Ford Date: Fri, 1 Sep 2023 12:42:09 -0400 Subject: [PATCH] chore(rust-doc): Add new Make command for CI builds (#18444) * feat: no deps on rust-doc * feat: add new ci build command and comments --- rust-doc/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rust-doc/Makefile b/rust-doc/Makefile index 5e18d6b763e51..f957f6056b677 100644 --- a/rust-doc/Makefile +++ b/rust-doc/Makefile @@ -1,3 +1,8 @@ +# Full docs build with all dependencies for local development docs: ../scripts/environment/install-protoc.sh ${HOME}/protoc PATH=${PATH}:${HOME}/protoc/ cargo doc --no-default-features --features="docs" +# rust-doc.vector.dev specific build without the extra dependencies +ci-docs-build: + ../scripts/environment/install-protoc.sh ${HOME}/protoc + PATH=${PATH}:${HOME}/protoc/ cargo doc --no-default-features --features="docs" --no-deps