Skip to content
Snippets Groups Projects
Unverified Commit 40b35820 authored by bgallois's avatar bgallois
Browse files

add rust doc generation

parent 7dda9e8e
No related branches found
No related tags found
No related merge requests found
......@@ -30,3 +30,4 @@ tmp
# Autogenerated docs
docs/api/runtime*.md
docs/api/doc
......@@ -21,6 +21,7 @@ use scale_info::form::PortableForm;
use serde::Serialize;
use std::collections::HashMap;
use std::path::Path;
use std::process::Command;
use std::{
fs::File,
io::{Read, Write},
......@@ -319,6 +320,24 @@ pub(super) fn gen_doc() -> Result<()> {
file.write_all(error_doc.as_bytes())
.with_context(|| format!("Failed to write to file '{}'", ERRORS_DOC_FILEPATH))?;
// Generate docs from rust code
Command::new("cargo")
.args([
"doc",
"--workspace",
"--no-deps",
"--document-private-items",
"--features=runtime-benchmarks",
])
.status()
.expect("cargo doc failed to execute");
// Organise folder for deployment
Command::new("cp")
.args(["-r", "./target/doc", "./docs/api/"])
.status()
.expect("failed to build docs folder");
Ok(())
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment