mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
Change to 4 digit assembly version (#6297)
* WiP: test build specific version number * update mk_win_dist for assembly-version * Add print statements for version * remove stray semicolon * undo quote change in projectstr * nit fixes * revert print formatting for Mac build * fix spaces
This commit is contained in:
parent
4abff18e8d
commit
f72cdda5fb
|
@ -8,7 +8,7 @@
|
||||||
from mk_util import *
|
from mk_util import *
|
||||||
|
|
||||||
def init_version():
|
def init_version():
|
||||||
set_version(4, 11, 1, 0)
|
set_version(4, 11, 1, 0) # express a default build version or pick up ci build version
|
||||||
|
|
||||||
# Z3 Project definition
|
# Z3 Project definition
|
||||||
def init_project_def():
|
def init_project_def():
|
||||||
|
|
|
@ -91,6 +91,7 @@ TRACE = False
|
||||||
PYTHON_ENABLED=False
|
PYTHON_ENABLED=False
|
||||||
DOTNET_CORE_ENABLED=False
|
DOTNET_CORE_ENABLED=False
|
||||||
DOTNET_KEY_FILE=getenv("Z3_DOTNET_KEY_FILE", None)
|
DOTNET_KEY_FILE=getenv("Z3_DOTNET_KEY_FILE", None)
|
||||||
|
ASSEMBLY_VERSION=getenv("Z2_ASSEMBLY_VERSION", None)
|
||||||
JAVA_ENABLED=False
|
JAVA_ENABLED=False
|
||||||
ML_ENABLED=False
|
ML_ENABLED=False
|
||||||
PYTHON_INSTALL_ENABLED=False
|
PYTHON_INSTALL_ENABLED=False
|
||||||
|
@ -540,15 +541,33 @@ def find_c_compiler():
|
||||||
raise MKException('C compiler was not found. Try to set the environment variable CC with the C compiler available in your system.')
|
raise MKException('C compiler was not found. Try to set the environment variable CC with the C compiler available in your system.')
|
||||||
|
|
||||||
def set_version(major, minor, build, revision):
|
def set_version(major, minor, build, revision):
|
||||||
global VER_MAJOR, VER_MINOR, VER_BUILD, VER_TWEAK, GIT_DESCRIBE
|
global ASSEMBLY_VERSION, VER_MAJOR, VER_MINOR, VER_BUILD, VER_TWEAK, GIT_DESCRIBE
|
||||||
|
|
||||||
|
# We need to give the assembly a build specific version
|
||||||
|
# global version overrides local default expression
|
||||||
|
if ASSEMBLY_VERSION is not None:
|
||||||
|
versionSplits = ASSEMBLY_VERSION.split('.')
|
||||||
|
if len(versionSplits) > 3:
|
||||||
|
VER_MAJOR = versionSplits[0]
|
||||||
|
VER_MINOR = versionSplits[1]
|
||||||
|
VER_BUILD = versionSplits[2]
|
||||||
|
VER_TWEAK = versionSplits[3]
|
||||||
|
print("Set Assembly Version (BUILD):", VER_MAJOR, VER_MINOR, VER_BUILD, VER_TWEAK)
|
||||||
|
return
|
||||||
|
|
||||||
|
# use parameters to set up version if not provided by script args
|
||||||
VER_MAJOR = major
|
VER_MAJOR = major
|
||||||
VER_MINOR = minor
|
VER_MINOR = minor
|
||||||
VER_BUILD = build
|
VER_BUILD = build
|
||||||
VER_TWEAK = revision
|
VER_TWEAK = revision
|
||||||
|
|
||||||
|
# update VER_TWEAK base on github
|
||||||
if GIT_DESCRIBE:
|
if GIT_DESCRIBE:
|
||||||
branch = check_output(['git', 'rev-parse', '--abbrev-ref', 'HEAD'])
|
branch = check_output(['git', 'rev-parse', '--abbrev-ref', 'HEAD'])
|
||||||
VER_TWEAK = int(check_output(['git', 'rev-list', '--count', 'HEAD']))
|
VER_TWEAK = int(check_output(['git', 'rev-list', '--count', 'HEAD']))
|
||||||
|
|
||||||
|
print("Set Assembly Version (DEFAULT):", VER_MAJOR, VER_MINOR, VER_BUILD, VER_TWEAK)
|
||||||
|
|
||||||
def get_version():
|
def get_version():
|
||||||
return (VER_MAJOR, VER_MINOR, VER_BUILD, VER_TWEAK)
|
return (VER_MAJOR, VER_MINOR, VER_BUILD, VER_TWEAK)
|
||||||
|
|
||||||
|
@ -666,6 +685,7 @@ def display_help(exit_code):
|
||||||
print(" --optimize generate optimized code during linking.")
|
print(" --optimize generate optimized code during linking.")
|
||||||
print(" --dotnet generate .NET platform bindings.")
|
print(" --dotnet generate .NET platform bindings.")
|
||||||
print(" --dotnet-key=<file> sign the .NET assembly using the private key in <file>.")
|
print(" --dotnet-key=<file> sign the .NET assembly using the private key in <file>.")
|
||||||
|
print(" --assembly-version=<x.x.x.x> provide version number for build")
|
||||||
print(" --java generate Java bindings.")
|
print(" --java generate Java bindings.")
|
||||||
print(" --ml generate OCaml bindings.")
|
print(" --ml generate OCaml bindings.")
|
||||||
print(" --js generate JScript bindings.")
|
print(" --js generate JScript bindings.")
|
||||||
|
@ -700,14 +720,14 @@ def display_help(exit_code):
|
||||||
# Parse configuration option for mk_make script
|
# Parse configuration option for mk_make script
|
||||||
def parse_options():
|
def parse_options():
|
||||||
global VERBOSE, DEBUG_MODE, IS_WINDOWS, VS_X64, ONLY_MAKEFILES, SHOW_CPPS, VS_PROJ, TRACE, VS_PAR, VS_PAR_NUM
|
global VERBOSE, DEBUG_MODE, IS_WINDOWS, VS_X64, ONLY_MAKEFILES, SHOW_CPPS, VS_PROJ, TRACE, VS_PAR, VS_PAR_NUM
|
||||||
global DOTNET_CORE_ENABLED, DOTNET_KEY_FILE, JAVA_ENABLED, ML_ENABLED, STATIC_LIB, STATIC_BIN, PREFIX, GMP, PYTHON_PACKAGE_DIR, GPROF, GIT_HASH, GIT_DESCRIBE, PYTHON_INSTALL_ENABLED, PYTHON_ENABLED
|
global DOTNET_CORE_ENABLED, DOTNET_KEY_FILE, ASSEMBLY_VERSION, JAVA_ENABLED, ML_ENABLED, STATIC_LIB, STATIC_BIN, PREFIX, GMP, PYTHON_PACKAGE_DIR, GPROF, GIT_HASH, GIT_DESCRIBE, PYTHON_INSTALL_ENABLED, PYTHON_ENABLED
|
||||||
global LINUX_X64, SLOW_OPTIMIZE, LOG_SYNC, SINGLE_THREADED
|
global LINUX_X64, SLOW_OPTIMIZE, LOG_SYNC, SINGLE_THREADED
|
||||||
global GUARD_CF, ALWAYS_DYNAMIC_BASE, IS_ARCH_ARM64
|
global GUARD_CF, ALWAYS_DYNAMIC_BASE, IS_ARCH_ARM64
|
||||||
try:
|
try:
|
||||||
options, remainder = getopt.gnu_getopt(sys.argv[1:],
|
options, remainder = getopt.gnu_getopt(sys.argv[1:],
|
||||||
'b:df:sxa:hmcvtnp:gj',
|
'b:df:sxa:hmcvtnp:gj',
|
||||||
['build=', 'debug', 'silent', 'x64', 'arm64=', 'help', 'makefiles', 'showcpp', 'vsproj', 'guardcf',
|
['build=', 'debug', 'silent', 'x64', 'arm64=', 'help', 'makefiles', 'showcpp', 'vsproj', 'guardcf',
|
||||||
'trace', 'dotnet', 'dotnet-key=', 'staticlib', 'prefix=', 'gmp', 'java', 'parallel=', 'gprof', 'js',
|
'trace', 'dotnet', 'dotnet-key=', 'assembly-version=', 'staticlib', 'prefix=', 'gmp', 'java', 'parallel=', 'gprof', 'js',
|
||||||
'githash=', 'git-describe', 'x86', 'ml', 'optimize', 'pypkgdir=', 'python', 'staticbin', 'log-sync', 'single-threaded'])
|
'githash=', 'git-describe', 'x86', 'ml', 'optimize', 'pypkgdir=', 'python', 'staticbin', 'log-sync', 'single-threaded'])
|
||||||
except:
|
except:
|
||||||
print("ERROR: Invalid command line option")
|
print("ERROR: Invalid command line option")
|
||||||
|
@ -745,6 +765,8 @@ def parse_options():
|
||||||
DOTNET_CORE_ENABLED = True
|
DOTNET_CORE_ENABLED = True
|
||||||
elif opt in ('--dotnet-key'):
|
elif opt in ('--dotnet-key'):
|
||||||
DOTNET_KEY_FILE = arg
|
DOTNET_KEY_FILE = arg
|
||||||
|
elif opt in ('--assembly-version'):
|
||||||
|
ASSEMBLY_VERSION = arg
|
||||||
elif opt in ('--staticlib'):
|
elif opt in ('--staticlib'):
|
||||||
STATIC_LIB = True
|
STATIC_LIB = True
|
||||||
elif opt in ('--staticbin'):
|
elif opt in ('--staticbin'):
|
||||||
|
@ -1694,7 +1716,9 @@ class DotNetDLLComponent(Component):
|
||||||
key = "<AssemblyOriginatorKeyFile>%s</AssemblyOriginatorKeyFile>" % self.key_file
|
key = "<AssemblyOriginatorKeyFile>%s</AssemblyOriginatorKeyFile>" % self.key_file
|
||||||
key += "\n<SignAssembly>true</SignAssembly>"
|
key += "\n<SignAssembly>true</SignAssembly>"
|
||||||
|
|
||||||
version = get_version_string(3)
|
version = get_version_string(4)
|
||||||
|
|
||||||
|
print("Version output to csproj:", version)
|
||||||
|
|
||||||
core_csproj_str = """<Project Sdk="Microsoft.NET.Sdk">
|
core_csproj_str = """<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
@ -2826,6 +2850,9 @@ def update_version():
|
||||||
minor = VER_MINOR
|
minor = VER_MINOR
|
||||||
build = VER_BUILD
|
build = VER_BUILD
|
||||||
revision = VER_TWEAK
|
revision = VER_TWEAK
|
||||||
|
|
||||||
|
print("UpdateVersion:", get_full_version_string(major, minor, build, revision))
|
||||||
|
|
||||||
if major is None or minor is None or build is None or revision is None:
|
if major is None or minor is None or build is None or revision is None:
|
||||||
raise MKException("set_version(major, minor, build, revision) must be used before invoking update_version()")
|
raise MKException("set_version(major, minor, build, revision) must be used before invoking update_version()")
|
||||||
if not ONLY_MAKEFILES:
|
if not ONLY_MAKEFILES:
|
||||||
|
|
|
@ -24,6 +24,7 @@ BUILD_X86_DIR=os.path.join('build-dist', 'x86')
|
||||||
VERBOSE=True
|
VERBOSE=True
|
||||||
DIST_DIR='dist'
|
DIST_DIR='dist'
|
||||||
FORCE_MK=False
|
FORCE_MK=False
|
||||||
|
ASSEMBLY_VERSION=None
|
||||||
DOTNET_CORE_ENABLED=True
|
DOTNET_CORE_ENABLED=True
|
||||||
DOTNET_KEY_FILE=None
|
DOTNET_KEY_FILE=None
|
||||||
JAVA_ENABLED=True
|
JAVA_ENABLED=True
|
||||||
|
@ -62,6 +63,7 @@ def display_help():
|
||||||
print(" -s, --silent do not print verbose messages.")
|
print(" -s, --silent do not print verbose messages.")
|
||||||
print(" -b <sudir>, --build=<subdir> subdirectory where x86 and x64 Z3 versions will be built (default: build-dist).")
|
print(" -b <sudir>, --build=<subdir> subdirectory where x86 and x64 Z3 versions will be built (default: build-dist).")
|
||||||
print(" -f, --force force script to regenerate Makefiles.")
|
print(" -f, --force force script to regenerate Makefiles.")
|
||||||
|
print(" --assembly-version assembly version for dll")
|
||||||
print(" --nodotnet do not include .NET bindings in the binary distribution files.")
|
print(" --nodotnet do not include .NET bindings in the binary distribution files.")
|
||||||
print(" --dotnet-key=<file> strongname sign the .NET assembly with the private key in <file>.")
|
print(" --dotnet-key=<file> strongname sign the .NET assembly with the private key in <file>.")
|
||||||
print(" --nojava do not include Java bindings in the binary distribution files.")
|
print(" --nojava do not include Java bindings in the binary distribution files.")
|
||||||
|
@ -74,7 +76,7 @@ def display_help():
|
||||||
|
|
||||||
# Parse configuration option for mk_make script
|
# Parse configuration option for mk_make script
|
||||||
def parse_options():
|
def parse_options():
|
||||||
global FORCE_MK, JAVA_ENABLED, ZIP_BUILD_OUTPUTS, GIT_HASH, DOTNET_CORE_ENABLED, DOTNET_KEY_FILE, PYTHON_ENABLED, X86ONLY, X64ONLY
|
global FORCE_MK, JAVA_ENABLED, ZIP_BUILD_OUTPUTS, GIT_HASH, DOTNET_CORE_ENABLED, DOTNET_KEY_FILE, ASSEMBLY_VERSION, PYTHON_ENABLED, X86ONLY, X64ONLY
|
||||||
path = BUILD_DIR
|
path = BUILD_DIR
|
||||||
options, remainder = getopt.gnu_getopt(sys.argv[1:], 'b:hsf', ['build=',
|
options, remainder = getopt.gnu_getopt(sys.argv[1:], 'b:hsf', ['build=',
|
||||||
'help',
|
'help',
|
||||||
|
@ -83,6 +85,7 @@ def parse_options():
|
||||||
'nojava',
|
'nojava',
|
||||||
'nodotnet',
|
'nodotnet',
|
||||||
'dotnet-key=',
|
'dotnet-key=',
|
||||||
|
'assembly-version=',
|
||||||
'zip',
|
'zip',
|
||||||
'githash',
|
'githash',
|
||||||
'nopython',
|
'nopython',
|
||||||
|
@ -102,6 +105,8 @@ def parse_options():
|
||||||
FORCE_MK = True
|
FORCE_MK = True
|
||||||
elif opt == '--nodotnet':
|
elif opt == '--nodotnet':
|
||||||
DOTNET_CORE_ENABLED = False
|
DOTNET_CORE_ENABLED = False
|
||||||
|
elif opt == '--assembly-version':
|
||||||
|
ASSEMBLY_VERSION = arg
|
||||||
elif opt == '--nopython':
|
elif opt == '--nopython':
|
||||||
PYTHON_ENABLED = False
|
PYTHON_ENABLED = False
|
||||||
elif opt == '--dotnet-key':
|
elif opt == '--dotnet-key':
|
||||||
|
@ -131,8 +136,10 @@ def mk_build_dir(path, x64):
|
||||||
opts = ["python", os.path.join('scripts', 'mk_make.py'), parallel, "-b", path]
|
opts = ["python", os.path.join('scripts', 'mk_make.py'), parallel, "-b", path]
|
||||||
if DOTNET_CORE_ENABLED:
|
if DOTNET_CORE_ENABLED:
|
||||||
opts.append('--dotnet')
|
opts.append('--dotnet')
|
||||||
if not DOTNET_KEY_FILE is None:
|
if DOTNET_KEY_FILE is not None:
|
||||||
opts.append('--dotnet-key=' + DOTNET_KEY_FILE)
|
opts.append('--dotnet-key=' + DOTNET_KEY_FILE)
|
||||||
|
if ASSEMBLY_VERSION is not None:
|
||||||
|
opts.append('--assembly-version=' + ASSEMBLY_VERSION)
|
||||||
if JAVA_ENABLED:
|
if JAVA_ENABLED:
|
||||||
opts.append('--java')
|
opts.append('--java')
|
||||||
if x64:
|
if x64:
|
||||||
|
@ -196,6 +203,7 @@ def mk_z3s():
|
||||||
|
|
||||||
def get_z3_name(x64):
|
def get_z3_name(x64):
|
||||||
major, minor, build, revision = get_version()
|
major, minor, build, revision = get_version()
|
||||||
|
print("Assembly version:", major, minor, build, revision)
|
||||||
if x64:
|
if x64:
|
||||||
platform = "x64"
|
platform = "x64"
|
||||||
else:
|
else:
|
||||||
|
@ -299,9 +307,10 @@ def cp_licenses():
|
||||||
cp_license(False)
|
cp_license(False)
|
||||||
|
|
||||||
def init_flags():
|
def init_flags():
|
||||||
global DOTNET_KEY_FILE, JAVA_ENABLED, PYTHON_ENABLED
|
global DOTNET_KEY_FILE, JAVA_ENABLED, PYTHON_ENABLED, ASSEMBLY_VERSION
|
||||||
mk_util.DOTNET_CORE_ENABLED = True
|
mk_util.DOTNET_CORE_ENABLED = True
|
||||||
mk_util.DOTNET_KEY_FILE = DOTNET_KEY_FILE
|
mk_util.DOTNET_KEY_FILE = DOTNET_KEY_FILE
|
||||||
|
mk_util.ASSEMBLY_VERSION = ASSEMBLY_VERSION
|
||||||
mk_util.JAVA_ENABLED = JAVA_ENABLED
|
mk_util.JAVA_ENABLED = JAVA_ENABLED
|
||||||
mk_util.PYTHON_ENABLED = PYTHON_ENABLED
|
mk_util.PYTHON_ENABLED = PYTHON_ENABLED
|
||||||
mk_util.ALWAYS_DYNAMIC_BASE = True
|
mk_util.ALWAYS_DYNAMIC_BASE = True
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
variables:
|
variables:
|
||||||
|
|
||||||
Major: '4'
|
Major: '4'
|
||||||
Minor: '11'
|
Minor: '11'
|
||||||
Patch: '1'
|
Patch: '1'
|
||||||
NightlyVersion: $(Major).$(Minor).$(Patch).$(Build.BuildId)-$(Build.DefinitionName)
|
AssemblyVersion: $(Major).$(Minor).$(Patch).$(Build.BuildId)
|
||||||
|
NightlyVersion: $(AssemblyVersion)-$(Build.DefinitionName)
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- stage: Build
|
- stage: Build
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
- job: Mac
|
- job: Mac
|
||||||
displayName: "Mac Build"
|
displayName: "Mac Build"
|
||||||
pool:
|
pool:
|
||||||
|
@ -23,7 +22,6 @@ stages:
|
||||||
artifactName: 'Mac'
|
artifactName: 'Mac'
|
||||||
targetPath: $(Build.ArtifactStagingDirectory)
|
targetPath: $(Build.ArtifactStagingDirectory)
|
||||||
|
|
||||||
|
|
||||||
- job: MacArm64
|
- job: MacArm64
|
||||||
displayName: "Mac ARM64 Build"
|
displayName: "Mac ARM64 Build"
|
||||||
pool:
|
pool:
|
||||||
|
@ -37,7 +35,6 @@ stages:
|
||||||
artifactName: 'MacArm64'
|
artifactName: 'MacArm64'
|
||||||
targetPath: $(Build.ArtifactStagingDirectory)
|
targetPath: $(Build.ArtifactStagingDirectory)
|
||||||
|
|
||||||
|
|
||||||
- job: Ubuntu
|
- job: Ubuntu
|
||||||
displayName: "Ubuntu build"
|
displayName: "Ubuntu build"
|
||||||
pool:
|
pool:
|
||||||
|
@ -124,7 +121,6 @@ stages:
|
||||||
# artifactName: '$(name)Build'
|
# artifactName: '$(name)Build'
|
||||||
# targetPath: $(Build.ArtifactStagingDirectory)
|
# targetPath: $(Build.ArtifactStagingDirectory)
|
||||||
|
|
||||||
|
|
||||||
- job: Windows32
|
- job: Windows32
|
||||||
displayName: "Windows 32-bit build"
|
displayName: "Windows 32-bit build"
|
||||||
pool:
|
pool:
|
||||||
|
@ -135,6 +131,7 @@ stages:
|
||||||
script:
|
script:
|
||||||
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86 &
|
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86 &
|
||||||
python scripts\mk_win_dist.py
|
python scripts\mk_win_dist.py
|
||||||
|
--assembly-version=$(AssemblyVersion)
|
||||||
--x86-only
|
--x86-only
|
||||||
--dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
|
--dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
|
||||||
--zip
|
--zip
|
||||||
|
@ -174,6 +171,7 @@ stages:
|
||||||
script:
|
script:
|
||||||
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 &
|
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 &
|
||||||
python scripts\mk_win_dist.py
|
python scripts\mk_win_dist.py
|
||||||
|
--assembly-version=$(AssemblyVersion)
|
||||||
--x64-only
|
--x64-only
|
||||||
--dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
|
--dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
|
||||||
--zip
|
--zip
|
||||||
|
|
Loading…
Reference in a new issue