Skip to content

Commit ec6640d

Browse files
Update nightly.yaml
1 parent 8507297 commit ec6640d

File tree

1 file changed

+9
-70
lines changed

1 file changed

+9
-70
lines changed

scripts/nightly.yaml

+9-70
Original file line numberDiff line numberDiff line change
@@ -49,38 +49,6 @@ stages:
4949
artifactName: 'Ubuntu-20.04'
5050
targetPath: $(Build.ArtifactStagingDirectory)
5151

52-
53-
- job: Ubuntu
54-
displayName: "Ubuntu build"
55-
pool:
56-
vmImage: "ubuntu-latest"
57-
steps:
58-
- script: python scripts/mk_unix_dist.py --dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk
59-
- script: git clone https://github.com/z3prover/z3test z3test
60-
- script: python z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
61-
- script: cp dist/*.zip $(Build.ArtifactStagingDirectory)/.
62-
- task: PublishPipelineArtifact@0
63-
inputs:
64-
artifactName: 'Ubuntu'
65-
targetPath: $(Build.ArtifactStagingDirectory)
66-
67-
- job: UbuntuArm64
68-
displayName: "Ubuntu ARM64 build"
69-
pool:
70-
vmImage: "ubuntu-latest"
71-
steps:
72-
- script: sudo apt update
73-
- script: sudo apt install gcc-arm-none-eabi -y
74-
- script: sudo apt install gcc-arm-linux-gnueabihf -y
75-
- script: sudo apt install gcc-aarch64-linux-gnu -y
76-
- script: sudo apt install g++-aarch64-linux-gnu -y
77-
- script: CXX=aarch64-linux-gnu-g++ CC=aarch64-linux-gnu-gcc python scripts/mk_unix_dist.py --dotnet-key=$(Build.SourcesDirectory)/resources/z3.snk --arch=arm64
78-
- script: cp dist/*.zip $(Build.ArtifactStagingDirectory)/.
79-
- task: PublishPipelineArtifact@0
80-
inputs:
81-
artifactName: 'UbuntuArm64'
82-
targetPath: $(Build.ArtifactStagingDirectory)
83-
8452
- job: UbuntuBuilds
8553
displayName: "Ubuntu Builds"
8654
pool:
@@ -125,7 +93,7 @@ stages:
12593
- script: cp $(arch)/*.zip $(Build.ArtifactStagingDirectory)/.
12694
- task: PublishPipelineArtifact@0
12795
inputs:
128-
artifactName: 'ubuntu-builds'
96+
artifactName: 'ubuntu-$(arch)'
12997
targetPath: $(Build.ArtifactStagingDirectory)
13098

13199
- job: UbuntuDoc
@@ -182,25 +150,6 @@ stages:
182150
artifactName: '$(name)Build'
183151
targetPath: $(Build.ArtifactStagingDirectory)
184152

185-
# - job: MuslLinuxBuild
186-
# condition: eq(0,1)
187-
# variables:
188-
# python: "/opt/python/cp310-cp310/bin/python"
189-
# name: MuslLinux
190-
# displayName: "MuslLinux build"
191-
# pool:
192-
# vmImage: "ubuntu-latest"
193-
# container: "quay.io/pypa/musllinux_1_1_x86_64:latest"
194-
# steps:
195-
# - script: $(python) scripts/mk_unix_dist.py --nodotnet --nojava
196-
# - script: git clone https://github.com/z3prover/z3test z3test
197-
# - script: $(python) z3test/scripts/test_benchmarks.py build-dist/z3 z3test/regressions/smt2
198-
# - script: cp dist/*.zip $(Build.ArtifactStagingDirectory)/
199-
# - task: PublishPipelineArtifact@0
200-
# inputs:
201-
# artifactName: '$(name)Build'
202-
# targetPath: $(Build.ArtifactStagingDirectory)
203-
204153
- job: Windows32
205154
displayName: "Windows 32-bit build"
206155
pool:
@@ -341,11 +290,6 @@ stages:
341290
inputs:
342291
artifact: 'Windows64'
343292
path: $(Agent.TempDirectory)\package
344-
- task: DownloadPipelineArtifact@2
345-
displayName: 'Download Ubuntu Build'
346-
inputs:
347-
artifact: 'Ubuntu'
348-
path: $(Agent.TempDirectory)\package
349293
- task: DownloadPipelineArtifact@2
350294
displayName: 'Download Ubuntu 20.04 Build'
351295
inputs:
@@ -354,8 +298,13 @@ stages:
354298
- task: DownloadPipelineArtifact@2
355299
displayName: 'Download Ubuntu ARM64 Build'
356300
inputs:
357-
artifact: 'UbuntuArm64'
301+
artifact: 'ubuntu-arm64'
358302
path: $(Agent.TempDirectory)\package
303+
- task: DownloadPipelineArtifact@2
304+
displayName: 'Download Ubuntu Build'
305+
inputs:
306+
artifact: 'ubuntu-x64'
307+
path: $(Agent.TempDirectory)\package
359308
- task: DownloadPipelineArtifact@2
360309
displayName: 'Download macOS Build'
361310
inputs:
@@ -577,11 +526,6 @@ stages:
577526
inputs:
578527
artifactName: 'ManyLinuxBuild'
579528
targetPath: $(Agent.TempDirectory)
580-
# - task: DownloadPipelineArtifact@2
581-
# displayName: 'Download MuslLinux Build'
582-
# inputs:
583-
# artifact: 'MuslLinuxBuild'
584-
# path: $(Agent.TempDirectory)
585529
- task: DownloadPipelineArtifact@2
586530
inputs:
587531
artifactName: 'Mac'
@@ -647,17 +591,12 @@ stages:
647591
- task: DownloadPipelineArtifact@2
648592
displayName: "Download Ubuntu Arm64"
649593
inputs:
650-
artifactName: 'UbuntuArm64'
651-
targetPath: tmp
652-
- task: DownloadPipelineArtifact@2
653-
displayName: 'Download Ubuntu Builds'
654-
inputs:
655-
artifact: 'ubuntu-builds'
594+
artifactName: 'ubuntu-arm64'
656595
targetPath: tmp
657596
- task: DownloadPipelineArtifact@2
658597
displayName: "Download Ubuntu"
659598
inputs:
660-
artifactName: 'Ubuntu'
599+
artifactName: 'ubuntu-x64'
661600
targetPath: tmp
662601
- task: DownloadPipelineArtifact@2
663602
displayName: "Download Ubuntu-20.04"

0 commit comments

Comments
 (0)