mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
add build step to generate doc
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a1814bf384
commit
8c8a8cee7a
|
@ -27,6 +27,7 @@ jobs:
|
|||
cd ..
|
||||
- template: scripts/test-z3.yml
|
||||
- template: scripts/test-regressions.yml
|
||||
- template: scripts/generate-doc.yml
|
||||
|
||||
# ./cpp_example
|
||||
# ./c_example
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
REM Script for updating the website containing the Z3 API documentation.
|
||||
REM You must be inside the Microsoft network to execute this script, and
|
||||
REM robocopy must be in your PATH.
|
||||
robocopy /S api\html \\research\root\web\external\en-us\UM\redmond\projects\z3
|
|
@ -1,4 +0,0 @@
|
|||
REM Script for updating the website containing the Z3 Code documentation.
|
||||
REM You must be inside the Microsoft network to execute this script, and
|
||||
REM robocopy must be in your PATH.
|
||||
robocopy /S code\html \\research\root\web\external\en-us\UM\redmond\projects\z3\code
|
7
scripts/generate-doc.yml
Normal file
7
scripts/generate-doc.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
steps:
|
||||
- script: |
|
||||
cd doc
|
||||
apt-get install doxygen
|
||||
apt-get install graphviz
|
||||
python mk_api_doc.py
|
||||
cd ..
|
Loading…
Reference in a new issue