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:
133133 - checkout : self
134134 clean : true
135135 - template : /eng/restore-internal-tools.yml
136- - script : eng\CIBuildNoPublish .cmd
136+ - script : eng\CIBuild .cmd
137137 -configuration $(_BuildConfig)
138138 -prepareMachine
139139 -testAllButIntegrationAndAot
Original file line number Diff line number Diff line change @@ -562,6 +562,7 @@ try {
562562 $script :BuildMessage = " Failure building product"
563563 if ($restore -or $build -or $rebuild -or $pack -or $sign -or $publish -and -not $skipBuild -and -not $productBuild ) {
564564 $originalSignValue = $sign
565+ $originalPublishValue = $publish
565566 if ($msbuildEngine -eq " dotnet" ) {
566567 # Building FSharp.sln and VisualFSharp.sln with .NET Core MSBuild
567568 # don't produce any artifacts to sign. Skip signing in this case.
@@ -571,9 +572,12 @@ try {
571572 BuildSolution " FSharp.sln" $False
572573 }
573574 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
574577 BuildSolution " VisualFSharp.sln" $False
575578 }
576579 $sign = $originalSignValue
580+ $publish = $originalPublishValue
577581 }
578582
579583 if ($testBenchmarks ) {
You can’t perform that action at this time.
0 commit comments