3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 14:13:23 +00:00

Add python packaging build and deployment with Azure

This commit is contained in:
Audrey Dutcher 2019-08-13 19:17:13 -07:00 committed by Nikolaj Bjorner
parent eec550e645
commit ec5b148ecc
4 changed files with 120 additions and 14 deletions

View file

@ -107,7 +107,7 @@ def check_build_dir(path):
# Create a build directory using mk_make.py
def mk_build_dir(path):
if not check_build_dir(path) or FORCE_MK:
opts = ["python", os.path.join('scripts', 'mk_make.py'), "-b", path, "--staticlib"]
opts = [sys.executable, os.path.join('scripts', 'mk_make.py'), "-b", path, "--staticlib"]
if DOTNET_CORE_ENABLED:
opts.append('--dotnet')
if not DOTNET_KEY_FILE is None: