File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ extends:
133
133
- checkout : self
134
134
clean : true
135
135
- template : /eng/restore-internal-tools.yml
136
- - script : eng\CIBuildNoPublish .cmd
136
+ - script : eng\CIBuild .cmd
137
137
-configuration $(_BuildConfig)
138
138
-prepareMachine
139
139
-testAllButIntegrationAndAot
Original file line number Diff line number Diff line change @@ -562,6 +562,7 @@ try {
562
562
$script :BuildMessage = " Failure building product"
563
563
if ($restore -or $build -or $rebuild -or $pack -or $sign -or $publish -and -not $skipBuild -and -not $productBuild ) {
564
564
$originalSignValue = $sign
565
+ $originalPublishValue = $publish
565
566
if ($msbuildEngine -eq " dotnet" ) {
566
567
# Building FSharp.sln and VisualFSharp.sln with .NET Core MSBuild
567
568
# don't produce any artifacts to sign. Skip signing in this case.
@@ -571,9 +572,12 @@ try {
571
572
BuildSolution " FSharp.sln" $False
572
573
}
573
574
else {
575
+ # vsixes do not count as publishing artifacts from Arcade perspective, and arcade publish.proj is failing when it encounters 0 items to publish.
576
+ $publish = $False
574
577
BuildSolution " VisualFSharp.sln" $False
575
578
}
576
579
$sign = $originalSignValue
580
+ $publish = $originalPublishValue
577
581
}
578
582
579
583
if ($testBenchmarks ) {
You can’t perform that action at this time.
0 commit comments