3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-12-09 09:50:53 -08:00
commit dcdbbfb925
144 changed files with 1528 additions and 517 deletions

View file

@ -8,7 +8,7 @@
from mk_util import *
def init_version():
set_version(4, 8, 13, 0)
set_version(4, 8, 14, 0)
# Z3 Project definition
def init_project_def():

View file

@ -1,5 +1,5 @@
variables:
ReleaseVersion: '4.8.11'
ReleaseVersion: '4.8.13'
stages:
- stage: Build
@ -36,14 +36,14 @@ stages:
- job: UbuntuDoc
displayName: "Ubuntu Doc build"
pool:
vmImage: "Ubuntu-18.04"
vmImage: "Ubuntu-latest"
steps:
- script: sudo apt-get install ocaml opam libgmp-dev
- script: sudo apt-get install doxygen
- script: sudo apt-get install graphviz
- script: opam init -y
- script: eval `opam config env`; opam install zarith ocamlfind -y
- script: python scripts/mk_make.py --ml --staticlib
- script: eval `opam config env`; python scripts/mk_make.py --ml
- script: sudo apt-get install doxygen
- script: sudo apt-get install graphviz
- script: |
set -e
cd build
@ -51,7 +51,6 @@ stages:
make -j3
make -j3 examples
make -j3 test-z3
./ml_example
cd ..
- script: |
set -e

View file

@ -6,7 +6,7 @@
trigger: none
variables:
ReleaseVersion: '4.8.12'
ReleaseVersion: '4.8.13'
stages:
@ -76,14 +76,14 @@ stages:
- job: UbuntuDoc
displayName: "Ubuntu Doc build"
pool:
vmImage: "Ubuntu-18.04"
vmImage: "Ubuntu-latest"
steps:
- script: sudo apt-get install ocaml opam libgmp-dev
- script: sudo apt-get install doxygen
- script: sudo apt-get install graphviz
- script: opam init -y
- script: eval `opam config env`; opam install zarith ocamlfind -y
- script: python scripts/mk_make.py --ml --staticlib
- script: eval `opam config env`; python scripts/mk_make.py --ml
- script: sudo apt-get install doxygen
- script: sudo apt-get install graphviz
- script: |
set -e
cd build
@ -91,7 +91,6 @@ stages:
make -j3
make -j3 examples
make -j3 test-z3
./ml_example
cd ..
- script: |
set -e
@ -310,6 +309,7 @@ stages:
jobs:
- job: GitHubPublish
condition: eq(0,1)
displayName: "Publish to GitHub"
pool:
vmImage: "windows-latest"
@ -397,9 +397,9 @@ stages:
artifact: 'PythonPackage'
path: dist
- task: DownloadSecureFile@1
name: pypirc
name: pypircs
inputs:
secureFile: 'pypirc'
secureFile: 'pypircs'
- script: python3 -m pip install --upgrade pip
- script: python3 -m pip install --user -U setuptools importlib_metadata wheel twine
- script: python3 -m twine upload --config-file $(pypirc.secureFilePath) -r $(pypiReleaseServer) dist/*
- script: python3 -m twine upload --config-file $(pypircs.secureFilePath) -r $(pypiReleaseServer) dist/*