Skip to content

Commit

Permalink
Try and follow more dotnet versions (#2556)
Browse files Browse the repository at this point in the history
(cherry picked from commit 75835cc)
  • Loading branch information
mattleibow authored and github-actions[bot] committed Aug 16, 2023
1 parent 09d15f8 commit 6123103
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions scripts/azure-pipelines-complete.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
trigger:
- main
- develop
- patch/*
- release/*

pr:
- main
- develop
- patch/*
- release/*

parameters:
- name: buildExternals
Expand Down
4 changes: 2 additions & 2 deletions scripts/azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
trigger:
- main
- develop
- patch/*
- release/*

pr:
- main
- develop
- patch/*
- release/*

parameters:
- name: buildExternals
Expand Down
6 changes: 3 additions & 3 deletions scripts/azure-templates-stages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -566,9 +566,9 @@ stages:
jobs:
- template: sign-artifacts/jobs/v2.yml@xamarin-templates
parameters:
${{ if or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/patch/')) }}:
${{ if or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/release/')) }}:
signType: 'Real'
${{ if not(or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/patch/'))) }}:
${{ if not(or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'))) }}:
signType: 'Test'

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

0 comments on commit 6123103

Please sign in to comment.