mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
setup python dist to remove internal build suffix for macos
This commit is contained in:
parent
da614c65e5
commit
48aa2f6988
|
@ -98,7 +98,7 @@ stages:
|
||||||
- script: echo '##vso[task.prependpath]/tmp/arm-toolchain/aarch64-none-linux-gnu/libc/usr/bin'
|
- script: echo '##vso[task.prependpath]/tmp/arm-toolchain/aarch64-none-linux-gnu/libc/usr/bin'
|
||||||
- script: echo $PATH
|
- script: echo $PATH
|
||||||
- script: stat /tmp/arm-toolchain/bin/aarch64-none-linux-gnu-gcc
|
- script: stat /tmp/arm-toolchain/bin/aarch64-none-linux-gnu-gcc
|
||||||
- script: python scripts/mk_unix_dist.py --nodotnet --nojava --arch=arm64
|
- script: python scripts/mk_unix_dist.py --nodotnet --arch=arm64
|
||||||
- task: CopyFiles@2
|
- task: CopyFiles@2
|
||||||
inputs:
|
inputs:
|
||||||
sourceFolder: dist
|
sourceFolder: dist
|
||||||
|
|
|
@ -250,10 +250,25 @@ class sdist(_sdist):
|
||||||
self.execute(_copy_sources, (), msg="Copying source files")
|
self.execute(_copy_sources, (), msg="Copying source files")
|
||||||
_sdist.run(self)
|
_sdist.run(self)
|
||||||
|
|
||||||
|
# The Azure Dev Ops pipelines use internal OS version tagging that don't correspond
|
||||||
|
# to releases.
|
||||||
|
|
||||||
|
internal_build_re = re.compile("((.+)\_7")
|
||||||
|
|
||||||
class bdist_wheel(_bdist_wheel):
|
class bdist_wheel(_bdist_wheel):
|
||||||
|
|
||||||
|
def remove_build_machine_os_version(self, platform, os_version_tag):
|
||||||
|
if platform in ["osx", "darwin", "sequoia"]:
|
||||||
|
m = internal_build_re.search(os_version_tag):
|
||||||
|
if m:
|
||||||
|
return m.group(1)
|
||||||
|
return os_version_tag
|
||||||
|
|
||||||
|
|
||||||
def finalize_options(self):
|
def finalize_options(self):
|
||||||
if BUILD_ARCH is not None and BUILD_PLATFORM is not None:
|
if BUILD_ARCH is not None and BUILD_PLATFORM is not None:
|
||||||
os_version_tag = '_'.join(BUILD_OS_VERSION[:2]) if BUILD_OS_VERSION is not None else 'xxxxxx'
|
os_version_tag = '_'.join(BUILD_OS_VERSION[:2]) if BUILD_OS_VERSION is not None else 'xxxxxx'
|
||||||
|
os_version_tag = self.remove_build_machine_os_version(BUILD_PLATFORM, os_version_tag)
|
||||||
TAGS = {
|
TAGS = {
|
||||||
# linux tags cannot be deployed - they must be auditwheel'd to pick the right compatibility tag based on imported libc symbol versions
|
# linux tags cannot be deployed - they must be auditwheel'd to pick the right compatibility tag based on imported libc symbol versions
|
||||||
("linux", "x86_64"): "linux_x86_64",
|
("linux", "x86_64"): "linux_x86_64",
|
||||||
|
|
Loading…
Reference in a new issue