Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge release/dev17.2 to release/dev17.3 #63742

Merged
merged 12 commits into from
Sep 1, 2022
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
56 changes: 28 additions & 28 deletions azure-pipelines-integration-lsp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,47 +2,47 @@

# Branches that trigger a build on commit
trigger:
include:
- main
- main-vs-deps
- release/*
- features/*
- demos/*
exclude:
# Since the version of VS on the integration VM images are a moving target,
# we are unable to reliably run integration tests on servicing branches.
- release/dev17.0-vs-deps
- release/dev17.2
- release/dev17.3
branches:
include:
- main
- main-vs-deps
- release/*
- features/*
- demos/*
exclude:
# Since the version of VS on the integration VM images are a moving target,
# we are unable to reliably run integration tests on servicing branches.
- release/dev17.0-vs-deps
- release/dev17.2
- release/dev17.3

# Branches that are allowed to trigger a build via /azp run.
# Automatic building of all PRs is disabled in the pipeline's trigger page.
# See https://docs.microsoft.com/en-us/azure/devops/pipelines/repos/github?view=azure-devops&tabs=yaml#comment-triggers
pr:
include:
- main
- main-vs-deps
- release/*
- features/*
- demos/*
exclude:
# Since the version of VS on the integration VM images are a moving target,
# we are unable to reliably run integration tests on servicing branches.
- release/dev17.0-vs-deps
- release/dev17.2
- release/dev17.3
branches:
include:
- main
- main-vs-deps
- release/*
- features/*
- demos/*
exclude:
# Since the version of VS on the integration VM images are a moving target,
# we are unable to reliably run integration tests on servicing branches.
- release/dev17.0-vs-deps
- release/dev17.2
- release/dev17.3

variables:
- name: XUNIT_LOGS
value: $(Build.SourcesDirectory)\artifacts\log\$(_configuration)
- name: queueName
value: windows.vs2022.amd64.open

jobs:
- job: VS_Integration_LSP
pool:
name: NetCore-Public
demands: ImageOverride -equals $(queueName)
name: NetCore-Svc-Public
demands: ImageOverride -equals windows.vs2022.amd64.open
timeoutInMinutes: 150

steps:
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pr:

variables:
- name: poolName
value: NetCore-Public
value: NetCore-Svc-Public
- name: queueName
value: windows.vs2022.amd64.open

Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines-richnav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ pr: none
jobs:
- job: RichCodeNav_Indexing
pool:
name: NetCore-Public
demands: ImageOverride -equals windows.vs2022preview.amd64.open
name: NetCore-Svc-Public
demands: ImageOverride -equals windows.vs2022.amd64.open
variables:
EnableRichCodeNavigation: true
timeoutInMinutes: 260
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/build-unix-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- job: ${{ parameters.jobName }}
pool:
${{ if ne(parameters.queueName, '') }}:
name: NetCore-Public
name: NetCore-Svc-Public
demands: ImageOverride -equals ${{ parameters.queueName }}

${{ if ne(parameters.vmImageName, '') }}:
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/build-windows-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- job: ${{ parameters.jobName }}
pool:
${{ if ne(parameters.queueName, '') }}:
name: NetCore-Public
name: NetCore-Svc-Public
demands: ImageOverride -equals ${{ parameters.queueName }}

${{ if ne(parameters.vmImageName, '') }}:
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/test-unix-job-single-machine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
dependsOn: ${{ parameters.buildJobName }}
pool:
${{ if ne(parameters.queueName, '') }}:
name: NetCore-Public
name: NetCore-Svc-Public
demands: ImageOverride -equals ${{ parameters.queueName }}

${{ if ne(parameters.vmImageName, '') }}:
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/test-windows-job-single-machine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- job: ${{ parameters.jobName }}
dependsOn: ${{ parameters.buildJobName }}
pool:
name: NetCore-Public
name: NetCore-Svc-Public
demands: ImageOverride -equals ${{ parameters.queueName }}
timeoutInMinutes: 120
variables:
Expand Down