mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 09:55:19 +00:00
pip install importlib resources
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
37b283fab9
commit
1ce95d3859
|
@ -85,6 +85,7 @@ stages:
|
||||||
pool:
|
pool:
|
||||||
vmImage: "ubuntu-latest"
|
vmImage: "ubuntu-latest"
|
||||||
steps:
|
steps:
|
||||||
|
- script: pip3 install importlib-resources
|
||||||
- script: sudo apt-get install ocaml opam libgmp-dev
|
- script: sudo apt-get install ocaml opam libgmp-dev
|
||||||
- script: opam init -y
|
- script: opam init -y
|
||||||
- script: eval `opam config env`; opam install zarith ocamlfind -y
|
- script: eval `opam config env`; opam install zarith ocamlfind -y
|
||||||
|
@ -103,6 +104,7 @@ stages:
|
||||||
set -e
|
set -e
|
||||||
eval `opam config env`
|
eval `opam config env`
|
||||||
cd doc
|
cd doc
|
||||||
|
pip3 install importlib-resources
|
||||||
python3 mk_api_doc.py --mld --z3py-package-path=../build/python/z3
|
python3 mk_api_doc.py --mld --z3py-package-path=../build/python/z3
|
||||||
python3 mk_params_doc.py
|
python3 mk_params_doc.py
|
||||||
mkdir api/html/ml
|
mkdir api/html/ml
|
||||||
|
|
|
@ -151,8 +151,8 @@ stages:
|
||||||
set -e
|
set -e
|
||||||
eval `opam config env`
|
eval `opam config env`
|
||||||
cd doc
|
cd doc
|
||||||
python mk_api_doc.py --mld --z3py-package-path=../build/python/z3
|
python3 mk_api_doc.py --mld --z3py-package-path=../build/python/z3
|
||||||
python mk_params_doc.py
|
python3 mk_params_doc.py
|
||||||
mkdir api/html/ml
|
mkdir api/html/ml
|
||||||
ocamldoc -html -d api/html/ml -sort -hide Z3 -I $( ocamlfind query zarith ) -I ../build/api/ml ../build/api/ml/z3enums.mli ../build/api/ml/z3.mli
|
ocamldoc -html -d api/html/ml -sort -hide Z3 -I $( ocamlfind query zarith ) -I ../build/api/ml ../build/api/ml/z3enums.mli ../build/api/ml/z3.mli
|
||||||
cd ..
|
cd ..
|
||||||
|
|
Loading…
Reference in a new issue