3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-06 16:01:55 +00:00

Merge branch 'master' of https://github.com/Z3Prover/z3 into jofleish/fixtabs

This commit is contained in:
jofleish 2024-02-26 09:47:00 -05:00
commit 0369695718
2 changed files with 10 additions and 20 deletions

View file

@ -4,7 +4,7 @@ variables:
Patch: '6' Patch: '6'
ReleaseVersion: $(Major).$(Minor).$(Patch) ReleaseVersion: $(Major).$(Minor).$(Patch)
AssemblyVersion: $(Major).$(Minor).$(Patch).$(Build.BuildId) AssemblyVersion: $(Major).$(Minor).$(Patch).$(Build.BuildId)
NightlyVersion: $(AssemblyVersion)-$(Build.DefinitionName) NightlyVersion: $(AssemblyVersion)-$(Build.buildId)
stages: stages:
- stage: Build - stage: Build
@ -231,22 +231,17 @@ stages:
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
displayName: 'Download Ubuntu 20.04 Build' displayName: 'Download Ubuntu 20.04 Build'
inputs: inputs:
artifact: 'Ubuntu-20.04' artifact: 'UbuntuBuild20'
path: $(Agent.TempDirectory)\package path: $(Agent.TempDirectory)\package
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
displayName: 'Download Ubuntu ARM64 Build' displayName: 'Download Ubuntu ARM64 Build'
inputs: inputs:
artifact: 'ubuntu-arm64' artifact: 'UbuntuArm64'
path: $(Agent.TempDirectory)\package path: $(Agent.TempDirectory)\package
- task: DownloadPipelineArtifact@2
displayName: 'Download Ubuntu Build'
inputs:
artifact: 'ubuntu-x64'
path: $(Agent.TempDirectory)\package
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
displayName: 'Download macOS Build' displayName: 'Download macOS Build'
inputs: inputs:
artifact: 'Mac' artifact: 'macOsBuild'
path: $(Agent.TempDirectory)\package path: $(Agent.TempDirectory)\package
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
displayName: 'Download macOS Arm64 Build' displayName: 'Download macOS Arm64 Build'
@ -466,7 +461,7 @@ stages:
targetPath: $(Agent.TempDirectory) targetPath: $(Agent.TempDirectory)
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
inputs: inputs:
artifactName: 'Mac' artifactName: 'macOsBuild'
targetPath: $(Agent.TempDirectory) targetPath: $(Agent.TempDirectory)
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
inputs: inputs:
@ -519,7 +514,7 @@ stages:
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
displayName: "Download Mac" displayName: "Download Mac"
inputs: inputs:
artifactName: 'Mac' artifactName: 'macOsBuild'
targetPath: tmp targetPath: tmp
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
displayName: "Download MacArm64" displayName: "Download MacArm64"
@ -529,17 +524,12 @@ stages:
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
displayName: "Download Ubuntu Arm64" displayName: "Download Ubuntu Arm64"
inputs: inputs:
artifactName: 'ubuntu-arm64' artifactName: 'UbuntuArm64'
targetPath: tmp
- task: DownloadPipelineArtifact@2
displayName: "Download Ubuntu"
inputs:
artifactName: 'ubuntu-x64'
targetPath: tmp targetPath: tmp
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
displayName: "Download Ubuntu-20.04" displayName: "Download Ubuntu-20.04"
inputs: inputs:
artifactName: 'Ubuntu-20.04' artifactName: 'UbuntuBuild20'
targetPath: tmp targetPath: tmp
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
displayName: "Download Doc" displayName: "Download Doc"

View file

@ -594,7 +594,7 @@ stages:
# Enable on release: # Enable on release:
- job: PyPIPublish - job: PyPIPublish
condition: eq(1,0) condition: eq(1,1)
displayName: "Publish to PyPI" displayName: "Publish to PyPI"
pool: pool:
vmImage: "ubuntu-latest" vmImage: "ubuntu-latest"