Skip to content

Commit fa401b9

Browse files
Try and follow more dotnet versions (#2556) (#2557)
(cherry picked from commit 75835cc) Co-authored-by: Matthew Leibowitz <mattleibow@live.com>
1 parent 09d15f8 commit fa401b9

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

scripts/azure-pipelines-complete.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
trigger:
22
- main
33
- develop
4-
- patch/*
4+
- release/*
55

66
pr:
77
- main
88
- develop
9-
- patch/*
9+
- release/*
1010

1111
parameters:
1212
- name: buildExternals

scripts/azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
trigger:
22
- main
33
- develop
4-
- patch/*
4+
- release/*
55

66
pr:
77
- main
88
- develop
9-
- patch/*
9+
- release/*
1010

1111
parameters:
1212
- name: buildExternals

scripts/azure-templates-stages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -566,9 +566,9 @@ stages:
566566
jobs:
567567
- template: sign-artifacts/jobs/v2.yml@xamarin-templates
568568
parameters:
569-
${{ if or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/patch/')) }}:
569+
${{ if or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/release/')) }}:
570570
signType: 'Real'
571-
${{ if not(or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/patch/'))) }}:
571+
${{ if not(or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'))) }}:
572572
signType: 'Test'
573573

574574
- ${{ if and(eq(variables['System.TeamProject'], 'devdiv'), ne(parameters.buildPipelineType, 'tests'), ne(variables['System.PullRequest.IsFork'], 'true')) }}:
@@ -912,7 +912,7 @@ stages:
912912
name: native_checks_windows
913913
displayName: Run Code Checks
914914
buildPipelineType: ${{ parameters.buildPipelineType }}
915-
condition: or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/patch/'))
915+
condition: or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'))
916916
vmImage: ${{ parameters.VM_IMAGE_WINDOWS}}
917917
target: git-sync-deps
918918
installWindowsSdk: false

0 commit comments

Comments
 (0)