Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ extends:
- checkout: self
clean: true
- template: /eng/restore-internal-tools.yml
- script: eng\CIBuildNoPublish.cmd
- script: eng\CIBuild.cmd
-configuration $(_BuildConfig)
-prepareMachine
-testAllButIntegrationAndAot
Expand Down
4 changes: 4 additions & 0 deletions eng/Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,7 @@ try {
$script:BuildMessage = "Failure building product"
if ($restore -or $build -or $rebuild -or $pack -or $sign -or $publish -and -not $skipBuild -and -not $productBuild) {
$originalSignValue = $sign
$originalPublishValue = $publish
if ($msbuildEngine -eq "dotnet") {
# Building FSharp.sln and VisualFSharp.sln with .NET Core MSBuild
# don't produce any artifacts to sign. Skip signing in this case.
Expand All @@ -576,9 +577,12 @@ try {
BuildSolution "FSharp.sln" $False
}
else {
# vsixes do not count as publishing artifacts from Arcade perspective, and arcade publish.proj is failing when it encounters 0 items to publish.
$publish = $False
BuildSolution "VisualFSharp.sln" $False
}
$sign = $originalSignValue
$publish = $originalPublishValue
}

if ($testBenchmarks) {
Expand Down
Loading