Merge pull request #1782 from influxdata/rustdoc

chore: Store generated rustdoc as circleci artifacts
pull/24376/head
kodiakhq[bot] 2021-06-22 22:33:07 +00:00 committed by GitHub
commit 23614d4b0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -103,8 +103,12 @@ jobs:
- cache_restore
- run:
name: Cargo doc
command: cargo doc --document-private-items --no-deps --workspace
# excluding datafusion because it's effectively a dependency masqueraded as workspace crate.
command: cargo doc --document-private-items --no-deps --workspace --exclude datafusion
- cache_save
- store_artifacts:
path: target/doc/
destination: rustdoc
test:
docker:
- image: quay.io/influxdb/rust:ci