diff --git a/rust-doc/Makefile b/rust-doc/Makefile index fca0b0d0851bb..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