Skip to content
Merged
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
20 changes: 11 additions & 9 deletions eng/pipelines/handlers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ trigger:
- main
- release/*
- net7.0
- net8.0
- loc
tags:
include:
Expand All @@ -28,6 +29,7 @@ pr:
- main
- release/*
- net7.0
- net8.0
paths:
include:
- '*'
Expand Down Expand Up @@ -124,13 +126,13 @@ resources:

stages:

- stage: build_net6
- stage: build_net
displayName: Build .NET MAUI
dependsOn: []
jobs:
- ${{ each BuildPlatform in parameters.BuildPlatforms }}:
- ${{ each BuildConfiguration in parameters.BuildConfigurations }}:
- job: build_net6_${{ BuildPlatform.name }}_${{ BuildConfiguration }}
- job: build_net_${{ BuildPlatform.name }}_${{ BuildConfiguration }}
workspace:
clean: all
displayName: ${{ BuildPlatform.name }} (${{ BuildConfiguration }})
Expand Down Expand Up @@ -175,12 +177,12 @@ stages:
inputs:
ArtifactName: ${{ BuildPlatform.artifact }}

- stage: pack_net6
- stage: pack_net
displayName: Pack .NET MAUI
dependsOn: []
jobs:
- ${{ each PackPlatform in parameters.PackPlatforms }}:
- job: pack_net6_${{ PackPlatform.name }}
- job: pack_net_${{ PackPlatform.name }}
workspace:
clean: all
displayName: ${{ PackPlatform.name }}
Expand All @@ -201,13 +203,13 @@ stages:
provisionatorChannel: ${{ parameters.provisionatorChannel }}
artifact: ${{ PackPlatform.artifact }}

- stage: samples_net6
- stage: samples_net
displayName: Build .NET MAUI Samples
dependsOn: pack_net6
dependsOn: pack_net
jobs:
- ${{ each BuildPlatform in parameters.BuildPlatforms }}:
- ${{ each BuildConfiguration in parameters.BuildConfigurations }}:
- job: build_net6_${{ BuildPlatform.name }}_${{ BuildConfiguration }}
- job: build_net_${{ BuildPlatform.name }}_${{ BuildConfiguration }}
workspace:
clean: all
displayName: ${{ BuildPlatform.name }} (${{ BuildConfiguration }})
Expand Down Expand Up @@ -254,9 +256,9 @@ stages:
inputs:
ArtifactName: ${{ BuildPlatform.artifact }}

- stage: templates_net6
- stage: templates_net
displayName: Build .NET MAUI Templates
dependsOn: pack_net6
dependsOn: pack_net
jobs:
- ${{ each BuildPlatform in parameters.BuildPlatforms }}:
- ${{ each BuildConfiguration in parameters.BuildConfigurations }}:
Expand Down