Skip to content
Snippets Groups Projects
Commit 988cee6e authored by Github auto committer's avatar Github auto committer
Browse files

github CI

parent 8f6e1fb8
No related branches found
No related tags found
No related merge requests found
Pipeline #1725891 passed
......@@ -26,6 +26,10 @@ buildlatex:
- mv manual/manual.pdf build/nightly/manual.pdf
- git add build/nightly/manual.pdf
#compile html
- cargo run itself html -o build/nightly/commands.html
- git add build/nightly/commands.html
#compile linux 64 bit
- cargo build --target x86_64-unknown-linux-gnu --release
- mv target/x86_64-unknown-linux-gnu/release/ebi build/nightly/Ebi-x86_64-linux
......
......@@ -525,7 +525,7 @@ pub fn html() -> String {
"Please refer to the <a href=\"https://git.rwth-aachen.de/rwth-bpm/rustlibrary/-/raw/main/build/nightly/manual.pdf?ref_type=heads&inline=true\">manual</a> for more information. " +
"<ul><li>" +
&EBI_COMMANDS.get_command_paths().iter().filter_map(|path| if path[1].long_name() != EBI_ITSELF.long_name() {
Some(EbiCommand::path_to_string(&path[1..]).to_sentence_case() + ". " + path.last().unwrap().explanation_short())
Some("<i>".to_owned() + &EbiCommand::path_to_string(&path[1..]).to_sentence_case() + "</i>. " + path.last().unwrap().explanation_short())
} else {None}).join("</li><li>") +
"</li></ul>"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment