mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
have nightly generate doc
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d08814a1fe
commit
7068ccdebd
|
@ -42,7 +42,6 @@ jobs:
|
||||||
- template: scripts/test-z3.yml
|
- template: scripts/test-z3.yml
|
||||||
- ${{if eq(variables['runRegressions'], 'True')}}:
|
- ${{if eq(variables['runRegressions'], 'True')}}:
|
||||||
- template: scripts/test-regressions.yml
|
- template: scripts/test-regressions.yml
|
||||||
- template: scripts/generate-doc.yml
|
|
||||||
|
|
||||||
- job: "Ubuntu18Python"
|
- job: "Ubuntu18Python"
|
||||||
displayName: "Ubuntu 18 with ocaml"
|
displayName: "Ubuntu 18 with ocaml"
|
||||||
|
@ -64,6 +63,7 @@ jobs:
|
||||||
cd ..
|
cd ..
|
||||||
- template: scripts/test-z3.yml
|
- template: scripts/test-z3.yml
|
||||||
- template: scripts/test-regressions.yml
|
- template: scripts/test-regressions.yml
|
||||||
|
- template: scripts/generate-doc.yml
|
||||||
|
|
||||||
|
|
||||||
- job: "LinuxMSan"
|
- job: "LinuxMSan"
|
||||||
|
|
|
@ -36,6 +36,31 @@ stages:
|
||||||
artifactName: 'Ubuntu'
|
artifactName: 'Ubuntu'
|
||||||
targetPath: $(Build.ArtifactStagingDirectory)
|
targetPath: $(Build.ArtifactStagingDirectory)
|
||||||
|
|
||||||
|
- job: UbuntoDoc
|
||||||
|
displayName: "Ubuntu Doc build"
|
||||||
|
pool:
|
||||||
|
vmImage: "ubuntu-latest"
|
||||||
|
steps:
|
||||||
|
- script: sudo apt-get install ocaml opam libgmp-dev
|
||||||
|
- script: opam init -y
|
||||||
|
- script: eval `opam config env`; opam install zarith ocamlfind -y
|
||||||
|
- script: python scripts/mk_make.py --ml --staticlib
|
||||||
|
- script: |
|
||||||
|
set -e
|
||||||
|
cd build
|
||||||
|
eval `opam config env`
|
||||||
|
make -j3
|
||||||
|
make -j3 examples
|
||||||
|
make -j3 test-z3
|
||||||
|
./ml_example
|
||||||
|
cd ..
|
||||||
|
- template: scripts/generate-doc.yml
|
||||||
|
- script: zip api.zip doc/api/.
|
||||||
|
- script: cp api.zip $(Build.ArtifactStagingDirectory)/.
|
||||||
|
- task: PublishPipelineArtifact@0
|
||||||
|
inputs:
|
||||||
|
artifactName: 'UbuntuDoc'
|
||||||
|
targetPath: $(Build.ArtifactStagingDirectory)
|
||||||
|
|
||||||
- job: Manylinux
|
- job: Manylinux
|
||||||
displayName: "Manylinux build"
|
displayName: "Manylinux build"
|
||||||
|
@ -273,6 +298,11 @@ stages:
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'Ubuntu'
|
artifactName: 'Ubuntu'
|
||||||
targetPath: tmp
|
targetPath: tmp
|
||||||
|
- task: DownloadPipelineArtifact@2
|
||||||
|
displayName: "Download Doc"
|
||||||
|
inputs:
|
||||||
|
artifactName: 'UbuntuDoc'
|
||||||
|
targetPath: tmp
|
||||||
- task: DownloadPipelineArtifact@2
|
- task: DownloadPipelineArtifact@2
|
||||||
displayName: "Download Python"
|
displayName: "Download Python"
|
||||||
inputs:
|
inputs:
|
||||||
|
|
Loading…
Reference in a new issue