Skip to content

Commit 91ca028

Browse files
arm64
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
1 parent 3821eb4 commit 91ca028

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

scripts/mk_unix_dist.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,9 @@ def get_os_name():
181181

182182
def get_z3_name():
183183
major, minor, build, revision = get_version()
184-
if sys.maxsize >= 2**32:
184+
if mk_util.IS_ARCH_ARM64:
185+
platform = "arm64"
186+
elif sys.maxsize >= 2**32:
185187
platform = "x64"
186188
else:
187189
platform = "x86"

scripts/nightly.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,11 @@ stages:
180180
inputs:
181181
artifact: 'Mac'
182182
path: $(Agent.TempDirectory)\package
183+
- task: DownloadPipelineArtifact@2
184+
displayName: 'Download macOS Arm64 Build'
185+
inputs:
186+
artifact: 'MacArm64'
187+
path: $(Agent.TempDirectory)\package
183188
- task: NuGetToolInstaller@0
184189
inputs:
185190
versionSpec: 5.x
@@ -435,6 +440,11 @@ stages:
435440
inputs:
436441
artifactName: 'Mac'
437442
targetPath: tmp
443+
- task: DownloadPipelineArtifact@2
444+
displayName: "Download MacArm64"
445+
inputs:
446+
artifactName: 'MacArm64'
447+
targetPath: tmp
438448
- task: DownloadPipelineArtifact@2
439449
displayName: "Download Ubuntu"
440450
inputs:

0 commit comments

Comments
 (0)