mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
arm64
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3821eb4134
commit
91ca02864c
|
@ -181,7 +181,9 @@ def get_os_name():
|
||||||
|
|
||||||
def get_z3_name():
|
def get_z3_name():
|
||||||
major, minor, build, revision = get_version()
|
major, minor, build, revision = get_version()
|
||||||
if sys.maxsize >= 2**32:
|
if mk_util.IS_ARCH_ARM64:
|
||||||
|
platform = "arm64"
|
||||||
|
elif sys.maxsize >= 2**32:
|
||||||
platform = "x64"
|
platform = "x64"
|
||||||
else:
|
else:
|
||||||
platform = "x86"
|
platform = "x86"
|
||||||
|
|
|
@ -180,6 +180,11 @@ stages:
|
||||||
inputs:
|
inputs:
|
||||||
artifact: 'Mac'
|
artifact: 'Mac'
|
||||||
path: $(Agent.TempDirectory)\package
|
path: $(Agent.TempDirectory)\package
|
||||||
|
- task: DownloadPipelineArtifact@2
|
||||||
|
displayName: 'Download macOS Arm64 Build'
|
||||||
|
inputs:
|
||||||
|
artifact: 'MacArm64'
|
||||||
|
path: $(Agent.TempDirectory)\package
|
||||||
- task: NuGetToolInstaller@0
|
- task: NuGetToolInstaller@0
|
||||||
inputs:
|
inputs:
|
||||||
versionSpec: 5.x
|
versionSpec: 5.x
|
||||||
|
@ -435,6 +440,11 @@ stages:
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'Mac'
|
artifactName: 'Mac'
|
||||||
targetPath: tmp
|
targetPath: tmp
|
||||||
|
- task: DownloadPipelineArtifact@2
|
||||||
|
displayName: "Download MacArm64"
|
||||||
|
inputs:
|
||||||
|
artifactName: 'MacArm64'
|
||||||
|
targetPath: tmp
|
||||||
- task: DownloadPipelineArtifact@2
|
- task: DownloadPipelineArtifact@2
|
||||||
displayName: "Download Ubuntu"
|
displayName: "Download Ubuntu"
|
||||||
inputs:
|
inputs:
|
||||||
|
|
Loading…
Reference in a new issue