Skip to content

Commit

Permalink
Allow the dotnet-unified-build-full pipeline to trigger a full build (#…
Browse files Browse the repository at this point in the history
…46235)

Co-authored-by: Alexander Köplinger <[email protected]>
  • Loading branch information
ViktorHofer and akoeplinger authored Jan 23, 2025
1 parent 807cd29 commit 8307d63
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/SourceBuild/content/eng/pipelines/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
# - CI: release/* only, every batched commit, full build
# - Schedule: main only, full build
#
# - dotnet-unified-build-full (public)
# https://dev.azure.com/dnceng-public/public/_build?definitionId=303
# Comment trigger only

variables:
# enable source-only build for pipelines that contain the -source-build string
Expand All @@ -38,7 +41,7 @@ stages:
parameters:
isBuiltFromVmr: true
isSourceOnlyBuild: ${{ variables.isSourceOnlyBuild }}
${{ if eq(variables.isScheduleTrigger, 'true') }}:
${{ if or(eq(variables.isScheduleTrigger, 'true'), contains(variables['Build.DefinitionName'], '-full')) }}:
scope: full
${{ elseif eq(variables.isSourceOnlyBuildLite, 'true') }}:
scope: lite
Expand Down

0 comments on commit 8307d63

Please sign in to comment.