forked from dotnet/TorchSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
850 lines (724 loc) · 33.5 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
################################################################################
# TorchSharp's PR validation build
################################################################################
name: $(TeamProject)_$(Build.DefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
parameters:
# Set this to 'true' to build the libtorch-* packages as part of main branch CI and
# push them to the artifacts feed of the Azure CI project
- name: BuildLibTorchPackages
type: boolean
default: false
- name: PushPackagesToFeed
type: boolean
default: false
# Set which source branch to build libtorch-* packages.
# The build-libtorch jobs are only run if the source branch is the same as this value.
# The default is 'main' branch.
- name: SourceBranchName
type: string
default: 'main'
variables:
MyRunNumber: $[counter('MyRunNumber', 52201)]
LinuxPrepScript: |
ldd --version && (/sbin/ldconfig -p | grep stdc++) && (strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep LIBCXX)
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys DE19EB17684BA42D
sudo apt-get -y update
sudo apt-get -y install cmake clang git libunwind8 curl libomp-dev libomp5 wget
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg --purge packages-microsoft-prod && sudo dpkg -i packages-microsoft-prod.deb
sudo apt-get update; sudo apt-get install -y apt-transport-https && sudo apt-get update
ldd --version && (/sbin/ldconfig -p | grep stdc++) && (strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep LIBCXX)
resources:
containers:
# - container: CentosContainer
# image: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7-mlnet-8bba86b-20190314145033
# dotnet-buildtools/prereqs containers can be browsed at
# https://github.com/dotnet/versions/blob/main/build-info/docker/image-info.dotnet-dotnet-buildtools-prereqs-docker-main.json
- container: UbuntuContainer
image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-20.04-20240708213715-dcf0bb9
jobs:
- template: /build/ci/job-template.yml
parameters:
name: Ubuntu_x64
# This reports the GLIB_ and GLIBCXX_ dependencies on the system which ends up getting baked into
# the generated libTorchSharp.so (and partly determines which Linux systems that binary will
# be usable on), then installs clang-7.0 (LibTorch likes this for building C++ 14), then installs .NET 6.0
prepScript: ${{ variables.LinuxPrepScript }}
buildScript: dotnet build /p:SkipCuda=true -c
testScript: dotnet test /p:SkipCuda=true --blame test/TorchSharpTest/TorchSharpTest.csproj -c
pool:
vmImage: 'ubuntu-latest'
container: UbuntuContainer
- template: /build/ci/job-template.yml
parameters:
prepScript: echo "no prep needed"
name: Windows_x64_NetCore
buildScript: dotnet build /p:SkipCuda=true /p:SkipNetFxBuild=true -c
testScript: dotnet test /p:SkipCuda=true /p:SkipNetFxBuild=true --blame test\TorchSharpTest\TorchSharpTest.csproj -c
pool:
vmImage: 'windows-latest'
- template: /build/ci/job-template.yml
parameters:
prepScript: echo "no prep needed"
name: Windows_x64_NetFX
buildScript: dotnet build /p:SkipCuda=true /p:SkipNetCoreBuild=true -c
testScript: dotnet test /p:SkipCuda=true /p:SkipNetCoreBuild=true --blame test\TorchSharpTest\TorchSharpTest.csproj -c
pool:
vmImage: 'windows-latest'
- template: /build/ci/job-template.yml
parameters:
prepScript: echo "no prep needed"
name: MacOS_arm64
buildScript: dotnet build /p:SkipCuda=true /p:TargetArchitecture=arm64 -c
testScript: echo "Azure Pipelines does not support arm64 yet, can't run tests"
pool:
vmImage: 'macos-latest'
################################################################################
# {Build} --> combine --> package to build native bits on multiple OS's
################################################################################
################################################################################
- job: Linux_Native_Build_For_Packages
################################################################################
condition: and(ne(variables['system.pullrequest.isfork'], true), eq(variables['build.sourcebranchname'], '${{ parameters.SourceBranchName }}'))
variables:
BuildConfig: Release
OfficialBuildId: $(BUILD.BUILDNUMBER)
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_MULTILEVEL_LOOKUP: 0
pool:
vmImage: 'ubuntu-latest'
container: UbuntuContainer
# Exact copy of the dependency install above - TODO share this somewhere
steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk'
inputs:
packageType: sdk
version: 6.0.402
installationPath: $(Agent.ToolsDirectory)/dotnet
- script: ${{ variables.LinuxPrepScript }}
displayName: Install dependencies
- script: dotnet build -c $(BuildConfig) src/Redist/libtorch-cpu/libtorch-cpu.proj /p:UpdateSHA=true /p:SkipTests=true /p:TargetOS=linux /t:Build /p:IncludeLibTorchCpuPackages=true
condition: eq('${{ parameters.BuildLibTorchPackages }}', true)
displayName: Download libtorch native binaries
- script: dotnet build -c $(BuildConfig) src/Redist/libtorch-cuda-12.1/libtorch-cuda-12.1.proj /p:UpdateSHA=true /p:SkipTests=true /p:TargetOS=linux /t:Build /p:IncludeLibTorchCudaPackages=true
condition: eq('${{ parameters.BuildLibTorchPackages }}', true)
displayName: Download libtorch native CUDA binaries
- script: dotnet build -c $(BuildConfig) src/TorchSharp/TorchSharp.csproj /p:SkipCuda=true /p:SkipTests=true
displayName: Build linux
- script: dotnet build -c $(BuildConfig) src/TorchVision/TorchVision.csproj /p:SkipCuda=true /p:SkipTests=true
displayName: Build TorchVision
- script: dotnet build -c $(BuildConfig) src/TorchAudio/TorchAudio.csproj /p:SkipCuda=true /p:SkipTests=true
displayName: Build TorchAudio
- publish: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)
artifact: LinuxAssets
################################################################################
- job: Windows_Native_Build_For_Packages
################################################################################
condition: and(ne(variables['system.pullrequest.isfork'], true), eq(variables['build.sourcebranchname'], '${{ parameters.SourceBranchName }}'))
variables:
BuildConfig: Release
OfficialBuildId: $(BUILD.BUILDNUMBER)
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_MULTILEVEL_LOOKUP: 0
pool:
vmImage: 'windows-latest'
steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk'
inputs:
packageType: sdk
version: 6.0.402
installationPath: $(Agent.ToolsDirectory)/dotnet
- script: dotnet build -c $(BuildConfig) src/Redist/libtorch-cpu/libtorch-cpu.proj /p:UpdateSHA=true /p:SkipTests=true /p:TargetOS=windows /t:Build /p:IncludeLibTorchCpuPackages=true
displayName: Download libtorch native binaries
- script: dotnet build -c $(BuildConfig) src/Redist/libtorch-cuda-12.1/libtorch-cuda-12.1.proj /p:UpdateSHA=true /p:SkipTests=true /p:TargetOS=windows /t:Build /p:IncludeLibTorchCudaPackages=true
condition: eq('${{ parameters.BuildLibTorchPackages }}', true)
displayName: Download libtorch native CUDA binaries
- script: dotnet build -c $(BuildConfig) src/TorchSharp/TorchSharp.csproj /p:SkipCuda=true /p:SkipTests=true
condition: eq('${{ parameters.BuildLibTorchPackages }}', true)
displayName: Build Windows
- script: dotnet build -c $(BuildConfig) src/TorchVision/TorchVision.csproj /p:SkipCuda=true /p:SkipTests=true
displayName: Build TorchVision
- script: dotnet build -c $(BuildConfig) src/TorchAudio/TorchAudio.csproj /p:SkipCuda=true /p:SkipTests=true
displayName: Build TorchAudio
- publish: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)
artifact: WindowsAssets
# ################################################################################
- job: MacOS_arm64_Native_Build_For_Packages
# ################################################################################
condition: and(ne(variables['system.pullrequest.isfork'], true), eq(variables['build.sourcebranchname'], '${{ parameters.SourceBranchName }}'))
variables:
BuildConfig: Release
OfficialBuildId: $(BUILD.BUILDNUMBER)
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_MULTILEVEL_LOOKUP: 0
pool:
vmImage: 'macos-latest'
steps:
- script: dotnet build -c $(BuildConfig) src/Redist/libtorch-cpu/libtorch-cpu.proj /p:UpdateSHA=true /p:TargetOS=mac /p:TargetArchitecture=arm64 /t:Build /p:IncludeLibTorchCpuPackages=true
displayName: Download libtorch native binaries
- script: dotnet build -c $(BuildConfig) src/TorchSharp/TorchSharp.csproj /p:SkipCuda=true /p:SkipTests=true /p:TargetArchitecture=arm64
displayName: Build mac-arm64
- script: dotnet build -c $(BuildConfig) src/TorchVision/TorchVision.csproj /p:SkipCuda=true /p:SkipTests=true /p:TargetArchitecture=arm64
displayName: Build TorchVision
- script: dotnet build -c $(BuildConfig) src/TorchAudio/TorchAudio.csproj /p:SkipCuda=true /p:SkipTests=true /p:TargetArchitecture=arm64
displayName: Build TorchAudio
- publish: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)
artifact: MacAssets_arm64
################################################################################
- job: Build_TorchSharp_And_libtorch_cpu_Packages
################################################################################
condition: and(ne(variables['system.pullrequest.isfork'], true), eq(variables['build.sourcebranchname'], '${{ parameters.SourceBranchName }}'))
dependsOn:
- Linux_Native_Build_For_Packages
- Windows_Native_Build_For_Packages
- MacOS_arm64_Native_Build_For_Packages
variables:
BuildConfig: Release
OfficialBuildId: $(BUILD.BUILDNUMBER)
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_MULTILEVEL_LOOKUP: 0
pool:
vmImage: 'windows-latest'
steps:
# We are 10GB space-constrained on the Azure Pipelines CI system so clean up what we can
# yup we even nuke the .git
- script: rmdir /q /s .git
displayName: Clean up space (.git)
continueOnError: true
# Download all bits contributing to the packages from the Linux build
- download: current
artifact: LinuxAssets
- task: CopyFiles@2
displayName: Copy linux native assets (TorchSharp) to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/LinuxAssets/TorchSharp
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)/TorchSharp
- task: CopyFiles@2
displayName: Copy linux native assets (TorchAudio) to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/LinuxAssets/TorchAudio
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)/TorchAudio
- task: CopyFiles@2
displayName: Copy linux native assets (TorchVision) to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/LinuxAssets/TorchVision
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)/TorchVision
- task: CopyFiles@2
displayName: Copy linux native assets to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/LinuxAssets
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)
- script: rmdir /s /q $(Pipeline.Workspace)\LinuxAssets
displayName: Free up space (LinuxAssets in workspace)
# Download all bits contributing to the packages from the Mac build
- download: current
artifact: MacAssets_arm64
- task: CopyFiles@2
displayName: Copy mac-arm64 native assets (TorchSharp) to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/MacAssets_arm64/TorchSharp
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)/TorchSharp
- task: CopyFiles@2
displayName: Copy mac-arm64 native assets (TorchAudio) to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/MacAssets_arm64/TorchAudio
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)/TorchAudio
- task: CopyFiles@2
displayName: Copy mac-arm64 native assets (TorchVision) to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/MacAssets_arm64/TorchVision
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)/TorchVision
- task: CopyFiles@2
displayName: Copy mac-arm64 native assets (libtorch-cpu) to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/MacAssets_arm64
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)
- script: rmdir /s /q $(Pipeline.Workspace)\MacAssets_arm64
displayName: Free up space (MacAssets_arm64 in workspace)
- download: current
artifact: WindowsAssets
- task: CopyFiles@2
displayName: Copy windows native assets (TorchSharp) to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/WindowsAssets/TorchSharp
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)/TorchSharp
- task: CopyFiles@2
displayName: Copy windows native assets (TorchAudio) to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/WindowsAssets/TorchAudio
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)/TorchAudio
- task: CopyFiles@2
displayName: Copy windows native assets (TorchVision) to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/WindowsAssets/TorchVision
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)/TorchVision
- task: CopyFiles@2
displayName: Copy windows native assets (libtorch-cpu) to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/WindowsAssets/libtorch-cpu-win-x64
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)/libtorch-cpu-win-x64
- script: rmdir /s /q $(Pipeline.Workspace)\WindowsAssets
displayName: Free up space (windows assets in workspace)
- script: dotnet restore pkg/pack.proj /p:Configuration=Release
displayName: Restore package projects
# Pack TorchSharp (and libtorch-cpu if BuildLibTorchPackages is true)
- script: dotnet pack -c $(BuildConfig) --no-build -v:n /p:SkipNative=true /p:SkipTests=true /p:IncludeTorchSharpPackage=true /p:IncludeLibTorchCpuPackages=${{ parameters.BuildLibTorchPackages }} pkg/pack.proj
displayName: Create Packages
- script: rmdir /q /s bin\obj
displayName: Clean up space (bin\obj)
continueOnError: true
- task: CopyFiles@2
displayName: Copy packaged assets to staging folder
inputs:
sourceFolder: $(Build.SourcesDirectory)/bin/packages/$(BuildConfig)
targetFolder: $(Build.ArtifactStagingDirectory)
- publish: $(Build.ArtifactStagingDirectory)
displayName: Publish build packages
artifact: BuildTorchSharpPackages
- publish: $(Build.SourcesDirectory)/config
displayName: Publish signing config
artifact: config
################################################################################
# Only run if BuildLibTorchPackages is true
- job: Build_libtorch_cuda_win_Packages
################################################################################
condition: and(ne(variables['system.pullrequest.isfork'], true), eq(variables['build.sourcebranchname'], '${{ parameters.SourceBranchName }}'), eq('${{ parameters.BuildLibTorchPackages }}', true))
dependsOn:
- Windows_Native_Build_For_Packages
variables:
BuildConfig: Release
OfficialBuildId: $(BUILD.BUILDNUMBER)
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_MULTILEVEL_LOOKUP: 0
pool:
vmImage: 'windows-latest'
steps:
# We are 10GB space-constrained on the Azure Pipelines CI system so clean up what we can
# yup we even nuke the .git
- script: rmdir /q /s .git
displayName: Clean up space (.git)
continueOnError: true
- download: current
artifact: WindowsAssets
- task: CopyFiles@2
displayName: Copy windows native assets to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/WindowsAssets
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)
- script: rmdir /s /q $(Pipeline.Workspace)\WindowsAssets
displayName: Free up space (windows assets in workspace)
- script: dotnet restore pkg/pack.proj /p:Configuration=Release
displayName: Restore package projects
- script: dotnet pack -c $(BuildConfig) --no-build -v:n /p:SkipNative=true /p:SkipTests=true /p:IncludeTorchSharpPackage=false /p:IncludeLibTorchCpuPackages=false /p:IncludeLibTorchCudaPackages=true pkg/pack.proj
displayName: Create Packages
# We are 10GB space-constrained on the Azure Pipelines CI system so clean up what we can
- script: rmdir /q /s bin\obj
displayName: Clean up space (bin\obj)
continueOnError: true
- task: CopyFiles@2
displayName: Copy packaged assets to staging folder
inputs:
sourceFolder: $(Build.SourcesDirectory)/bin/packages/$(BuildConfig)
targetFolder: $(Build.ArtifactStagingDirectory)
- publish: $(Build.ArtifactStagingDirectory)
displayName: Publish Windows CUDA build packages
artifact: BuildWinCUDAPackages
################################################################################
- job: Build_libtorch_cuda_linux_Packages
################################################################################
condition: and(ne(variables['system.pullrequest.isfork'], true), eq(variables['build.sourcebranchname'], '${{ parameters.SourceBranchName }}'), eq('${{ parameters.BuildLibTorchPackages }}', true))
dependsOn:
- Linux_Native_Build_For_Packages
variables:
BuildConfig: Release
OfficialBuildId: $(BUILD.BUILDNUMBER)
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_MULTILEVEL_LOOKUP: 0
pool:
vmImage: 'ubuntu-latest'
container: UbuntuContainer
# Exact copy of the dependency install above - TODO share this somewhere
steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk'
inputs:
packageType: sdk
version: 6.x
installationPath: $(Agent.ToolsDirectory)/dotnet
- script: ${{ variables.LinuxPrepScript }}
displayName: Install dependencies
# We are 10GB space-constrained on the Azure Pipelines CI system so clean up what we can
# yup we even nuke the .git
- script: rm -fr .git
displayName: Clean up space (.git)
continueOnError: true
- download: current
artifact: LinuxAssets
- task: CopyFiles@2
displayName: Copy linux native assets to correct folder where the bits contributing to the packages are assembled
inputs:
sourceFolder: $(Pipeline.Workspace)/LinuxAssets
targetFolder: $(Build.SourcesDirectory)/bin/obj/packprep/$(BuildConfig)
- script: rm -fr $(Pipeline.Workspace)/LinuxAssets
displayName: Free up space (linux assets in workspace)
- script: dotnet restore pkg/pack.proj /p:Configuration=Release
displayName: Restore package projects
- script: dotnet pack -c $(BuildConfig) --no-build -v:n /p:SkipNative=true /p:SkipTests=true /p:IncludeTorchSharpPackage=false /p:IncludeLibTorchCpuPackages=false /p:IncludeLibTorchCudaPackages=true pkg/pack.proj
displayName: Create Packages
# We are 10GB space-constrained on the Azure Pipelines CI system so clean up what we can
- script: rm -fr bin/obj
displayName: Clean up space (bin/obj)
continueOnError: true
- task: CopyFiles@2
displayName: Copy packaged assets to staging folder
inputs:
sourceFolder: $(Build.SourcesDirectory)/bin/packages/$(BuildConfig)
targetFolder: $(Build.ArtifactStagingDirectory)
- publish: $(Build.ArtifactStagingDirectory)
displayName: Publish Linux CUDA build packages
artifact: BuildLinuxCUDAPackages
################################################################################
- job: CodeSign_Core
################################################################################
condition: and(ne(variables['system.pullrequest.isfork'], true), eq(variables['build.sourcebranchname'], '${{ parameters.SourceBranchName }}'))
dependsOn:
- Build_TorchSharp_And_libtorch_cpu_Packages
variables:
- group: SignClient Credentials
pool:
vmImage: 'windows-latest'
steps:
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install --tool-path . SignClient
displayName: Install SignTool tool
- download: current
displayName: Download configuration
artifact: config
- download: current
displayName: Download TorchSharp Packages
artifact: BuildTorchSharpPackages
- pwsh: |
.\SignClient 'Sign' `
--baseDirectory '$(Pipeline.Workspace)\BuildTorchSharpPackages' `
--input '**/*.nupkg' `
--config '$(Pipeline.Workspace)\config\SignClient.json' `
--filelist '$(Pipeline.Workspace)\config\signedfiles.txt' `
--user '$(SignClientUser)' `
--secret '$(SignClientSecret)' `
--name 'TorchSharp' `
--description 'TorchSharp' `
--descriptionUrl 'https://github.com/dotnet/TorchSharp'
displayName: Sign packages
- publish: $(Pipeline.Workspace)/BuildTorchSharpPackages
displayName: Publish Signed TorchSharp Packages
artifact: SignedTorchSharpPackages
continueOnError: true
- script: rmdir /s /q $(Pipeline.Workspace)\BuildTorchSharpPackages
displayName: Free up space (TorchSharp packages in workspace)
################################################################################
- job: CodeSign_Extras
################################################################################
condition: and(ne(variables['system.pullrequest.isfork'], true), eq(variables['build.sourcebranchname'], '${{ parameters.SourceBranchName }}'), eq('${{ parameters.BuildLibTorchPackages }}', true))
dependsOn:
- Build_libtorch_cuda_win_Packages
- Build_libtorch_cuda_linux_Packages
variables:
- group: SignClient Credentials
pool:
vmImage: 'windows-latest'
steps:
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install --tool-path . SignClient
displayName: Install SignTool tool
- download: current
displayName: Download configuration
artifact: config
- download: current
displayName: Download Windows CUDA Packages
artifact: BuildWinCUDAPackages
- pwsh: |
.\SignClient 'Sign' `
--baseDirectory '$(Pipeline.Workspace)\BuildWinCUDAPackages' `
--input '**/*.nupkg' `
--config '$(Pipeline.Workspace)\config\SignClient.json' `
--filelist '$(Pipeline.Workspace)\config\signedfiles.txt' `
--user '$(SignClientUser)' `
--secret '$(SignClientSecret)' `
--name 'TorchSharp' `
--description 'TorchSharp' `
--descriptionUrl 'https://github.com/dotnet/TorchSharp'
displayName: Sign packages
- publish: $(Pipeline.Workspace)/BuildWinCUDAPackages
displayName: Publish Signed Windows CUDA Packages
artifact: SignedWinCUDAPackages
continueOnError: true
- script: rmdir /s /q $(Pipeline.Workspace)\BuildWinCUDAPackages
displayName: Free up space (TorchSharp packages in workspace)
- download: current
displayName: Download Linux CUDA Packages
artifact: BuildLinuxCUDAPackages
- pwsh: |
.\SignClient 'Sign' `
--baseDirectory '$(Pipeline.Workspace)\BuildLinuxCUDAPackages' `
--input '**/*.nupkg' `
--config '$(Pipeline.Workspace)\config\SignClient.json' `
--filelist '$(Pipeline.Workspace)\config\signedfiles.txt' `
--user '$(SignClientUser)' `
--secret '$(SignClientSecret)' `
--name 'TorchSharp' `
--description 'TorchSharp' `
--descriptionUrl 'https://github.com/dotnet/TorchSharp'
displayName: Sign packages
- publish: $(Pipeline.Workspace)/BuildLinuxCUDAPackages
displayName: Publish Signed Linux CUDA Packages
artifact: SignedLinuxCUDAPackages
continueOnError: true
- script: rmdir /s /q $(Pipeline.Workspace)\BuildLinuxCUDAPackages
displayName: Free up space (TorchSharp packages in workspace)
################################################################################
- job: Push_TorchSharp_And_libtorch_cpu_Packages
################################################################################
condition: and(eq('${{ parameters.PushPackagesToFeed }}', true), ne(variables['system.pullrequest.isfork'], true), eq(variables['build.sourcebranchname'], '${{ parameters.SourceBranchName }}'))
dependsOn:
- Build_TorchSharp_And_libtorch_cpu_Packages
- CodeSign_Core
variables:
BuildConfig: Release
OfficialBuildId: $(BUILD.BUILDNUMBER)
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_MULTILEVEL_LOOKUP: 0
pool:
vmImage: 'windows-latest'
steps:
# Push packages to feed
#
# Doing these one by one as we're getting a lot of failures pushing them
# Also replaying them multiple times for the same reason
#
- task: NuGetAuthenticate@0
displayName: 'NuGet Authenticate'
- download: current
displayName: Download Signed TorchSharp Packages
artifact: SignedTorchSharpPackages
- task: NuGetCommand@2
displayName: 'NuGet push (TorchSharp)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/TorchSharp.*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
continueOnError: true
- task: NuGetCommand@2
displayName: 'NuGet push (TorchAudio)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/TorchAudio.*.nupkg'
publishVstsFeed: 'TorchSharp/SignedPackages'
allowPackageConflicts: true
continueOnError: true
- task: NuGetCommand@2
displayName: 'NuGet push (TorchVision)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/TorchVision.*.nupkg'
publishVstsFeed: 'TorchSharp/SignedPackages'
allowPackageConflicts: true
continueOnError: true
- task: NuGetCommand@2
displayName: 'NuGet push (TorchSharp-cpu)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/TorchSharp-*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
continueOnError: true
# push the CPU runtime packages
- task: NuGetCommand@2
displayName: 'NuGet push (libtorch-cpu)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/libtorch-cpu*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
continueOnError: true
# push the CPU runtime packages (retry - we get so many failures!)
- task: NuGetCommand@2
displayName: 'NuGet push (libtorch-cpu - retry)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/libtorch-cpu*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
continueOnError: true
# push the CPU runtime packages (retry - we get so many failures!)
- task: NuGetCommand@2
displayName: 'NuGet push (libtorch-cpu - retry)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/libtorch-cpu*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
continueOnError: true
# Terminate all dotnet build processes.
- script: dotnet build-server shutdown
displayName: Dotnet Server Shutdown
################################################################################
# Only run if BuildLibTorchPackages is true
- job: Push_libtorch_cuda_win_Packages
################################################################################
condition: and(eq('${{ parameters.BuildLibTorchPackages }}', true), eq('${{ parameters.PushPackagesToFeed }}', true), ne(variables['system.pullrequest.isfork'], true))
dependsOn:
- Build_libtorch_cuda_win_Packages
- CodeSign_Extras
variables:
BuildConfig: Release
OfficialBuildId: $(BUILD.BUILDNUMBER)
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_MULTILEVEL_LOOKUP: 0
pool:
vmImage: 'windows-latest'
steps:
# Push packages to feed
#
# Doing these one by one as we're getting a lot of failures pushing them
# Also replaying them multiple times for the same reason
#
- task: NuGetAuthenticate@0
displayName: 'NuGet Authenticate'
- download: current
displayName: Download Signed Windows CUDA Packages
artifact: SignedWinCUDAPackages
# push the Windows Cuda packages
- task: NuGetCommand@2
displayName: 'NuGet push (cuda win-x64)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/*cuda*win*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
# often fails - try but ignore the error until we sort it out
continueOnError: true
# push the Windows Cuda packages
- task: NuGetCommand@2
displayName: 'NuGet push (cuda win-x64 retry)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/*cuda*win*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
# often fails - try but ignore the error until we sort it out
continueOnError: true
# push the Windows Cuda packages
- task: NuGetCommand@2
displayName: 'NuGet push (cuda win-x64 retry)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/*cuda*win*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
# often fails - try but ignore the error until we sort it out
continueOnError: true
# push the Windows Cuda packages
- task: NuGetCommand@2
displayName: 'NuGet push (cuda win-x64 retry)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/*cuda*win*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
# often fails - try but ignore the error until we sort it out
continueOnError: true
# push the Windows Cuda packages
- task: NuGetCommand@2
displayName: 'NuGet push (cuda win-x64 retry)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/*cuda*win*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
# often fails - try but ignore the error until we sort it out
continueOnError: true
################################################################################
- job: Push_libtorch_cuda_linux_Packages
################################################################################
condition: and(eq('${{ parameters.BuildLibTorchPackages }}', 'true'), eq('${{ parameters.PushPackagesToFeed }}', true), ne(variables['system.pullrequest.isfork'], true))
dependsOn:
- Build_libtorch_cuda_linux_Packages
- CodeSign_Extras
variables:
BuildConfig: Release
OfficialBuildId: $(BUILD.BUILDNUMBER)
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_MULTILEVEL_LOOKUP: 0
pool:
vmImage: 'windows-latest'
# container: UbuntuContainer
# Exact copy of the dependency install above - TODO share this somewhere
steps:
# Push packages to feed
#
# Doing these one by one as we're getting a lot of failures pushing them
# Also replaying them multiple times for the same reason
#
- task: NuGetAuthenticate@0
displayName: 'NuGet Authenticate'
- download: current
displayName: Download Signed Linux CUDA Packages
artifact: SignedLinuxCUDAPackages
# push the Linux Cuda packages
- task: NuGetCommand@2
displayName: 'NuGet push (cuda linux-x64)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/*cuda*linux*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
# often fails - try but ignore the error until we sort it out
continueOnError: true
# push the Linux Cuda packages
- task: NuGetCommand@2
displayName: 'NuGet push (cuda linux-x64)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/*cuda*linux*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
# often fails - try but ignore the error until we sort it out
continueOnError: true
# push the Linux Cuda packages
- task: NuGetCommand@2
displayName: 'NuGet push (cuda linux-x64)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/*cuda*linux*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
# often fails - try but ignore the error until we sort it out
continueOnError: true
# push the Linux Cuda packages
- task: NuGetCommand@2
displayName: 'NuGet push (cuda linux-x64)'
inputs:
command: push
packagesToPush: '$(Pipeline.Workspace)/**/*cuda*linux*.nupkg'
publishVstsFeed: 'TorchSharp/TestPackages'
allowPackageConflicts: true
# often fails - try but ignore the error until we sort it out
continueOnError: true