Skip to content

Commit 4127b2c

Browse files
authored
chore(rust-doc): Add new Make command for CI builds (vectordotdev#18444)
* feat: no deps on rust-doc * feat: add new ci build command and comments
1 parent 7849d80 commit 4127b2c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

rust-doc/Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Full docs build with all dependencies for local development
12
docs:
23
../scripts/environment/install-protoc.sh ${HOME}/protoc
34
PATH=${PATH}:${HOME}/protoc/ cargo doc --no-default-features --features="docs"
5+
# rust-doc.vector.dev specific build without the extra dependencies
6+
ci-docs-build:
7+
../scripts/environment/install-protoc.sh ${HOME}/protoc
8+
PATH=${PATH}:${HOME}/protoc/ cargo doc --no-default-features --features="docs" --no-deps

0 commit comments

Comments
 (0)