Skip to content

Commit

Permalink
chore(rust-doc): Add new Make command for CI builds (vectordotdev#18444)
Browse files Browse the repository at this point in the history
* feat: no deps on rust-doc

* feat: add new ci build command and comments
  • Loading branch information
devindford authored Sep 1, 2023
1 parent 7849d80 commit 4127b2c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions rust-doc/Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4127b2c

Please sign in to comment.