mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
try to add Ubuntu ARM64 to nightly #6835
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7135283135
commit
1b2b8809c0
|
@ -63,6 +63,20 @@ stages:
|
||||||
artifactName: 'Ubuntu'
|
artifactName: 'Ubuntu'
|
||||||
targetPath: $(Build.ArtifactStagingDirectory)
|
targetPath: $(Build.ArtifactStagingDirectory)
|
||||||
|
|
||||||
|
- job: UbuntuArm64
|
||||||
|
displayName: "Ubuntu ARM64 build"
|
||||||
|
pool:
|
||||||
|
vmImage: "ubuntu-latest"
|
||||||
|
steps:
|
||||||
|
- script: python scripts/mk_unix_dist.py --dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk --arch=arm64
|
||||||
|
- script: git clone https://github.com/z3prover/z3test z3test
|
||||||
|
- script: python z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
|
||||||
|
- script: cp dist/*.zip $(Build.ArtifactStagingDirectory)/.
|
||||||
|
- task: PublishPipelineArtifact@0
|
||||||
|
inputs:
|
||||||
|
artifactName: 'Ubuntu'
|
||||||
|
targetPath: $(Build.ArtifactStagingDirectory)
|
||||||
|
|
||||||
- job: UbuntuDoc
|
- job: UbuntuDoc
|
||||||
displayName: "Ubuntu Doc build"
|
displayName: "Ubuntu Doc build"
|
||||||
pool:
|
pool:
|
||||||
|
@ -238,6 +252,11 @@ stages:
|
||||||
inputs:
|
inputs:
|
||||||
artifact: 'Ubuntu'
|
artifact: 'Ubuntu'
|
||||||
path: $(Agent.TempDirectory)\package
|
path: $(Agent.TempDirectory)\package
|
||||||
|
- task: DownloadPipelineArtifact@2
|
||||||
|
displayName: 'Download Ubuntu ARM64 Build'
|
||||||
|
inputs:
|
||||||
|
artifact: 'UbuntuArm64'
|
||||||
|
path: $(Agent.TempDirectory)\package
|
||||||
- task: DownloadPipelineArtifact@2
|
- task: DownloadPipelineArtifact@2
|
||||||
displayName: 'Download macOS Build'
|
displayName: 'Download macOS Build'
|
||||||
inputs:
|
inputs:
|
||||||
|
@ -521,6 +540,11 @@ stages:
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'MacArm64'
|
artifactName: 'MacArm64'
|
||||||
targetPath: tmp
|
targetPath: tmp
|
||||||
|
- task: DownloadPipelineArtifact@2
|
||||||
|
displayName: "Download Ubuntu Arm64"
|
||||||
|
inputs:
|
||||||
|
artifactName: 'UbuntuArm64'
|
||||||
|
targetPath: tmp
|
||||||
- task: DownloadPipelineArtifact@2
|
- task: DownloadPipelineArtifact@2
|
||||||
displayName: "Download Ubuntu"
|
displayName: "Download Ubuntu"
|
||||||
inputs:
|
inputs:
|
||||||
|
|
Loading…
Reference in a new issue