From c5ab8f740d190c7d483da4adcf278b72dcdfdf8e Mon Sep 17 00:00:00 2001 From: "Scott Beddall (from Dev Box)" Date: Mon, 3 Jun 2024 13:56:46 -0700 Subject: [PATCH 1/2] install dotnet 8 --- tools/test-proxy/tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/test-proxy/tests.yml b/tools/test-proxy/tests.yml index a26675a85d6..19aefc48420 100644 --- a/tools/test-proxy/tests.yml +++ b/tools/test-proxy/tests.yml @@ -25,6 +25,12 @@ stages: name: $(Pool) steps: + - task: UseDotNet@2 # About UseDotNet@2 task: + displayName: "Install .NET 8" + retryCountOnTaskFailure: 3 + inputs: + version: "8.x" + - template: /eng/pipelines/templates/steps/install-dotnet.yml - script: 'dotnet test /p:ArtifactsPackagesDir=$(Build.ArtifactStagingDirectory) --filter "Category=Integration" --logger trx $(Build.SourcesDirectory)/tools/test-proxy/' From c805323a933891bac7be93779502c43750d2280c Mon Sep 17 00:00:00 2001 From: "Scott Beddall (from Dev Box)" Date: Mon, 3 Jun 2024 14:19:02 -0700 Subject: [PATCH 2/2] repair these livestests properly --- tools/test-proxy/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/test-proxy/tests.yml b/tools/test-proxy/tests.yml index 19aefc48420..824eace3f8f 100644 --- a/tools/test-proxy/tests.yml +++ b/tools/test-proxy/tests.yml @@ -25,12 +25,6 @@ stages: name: $(Pool) steps: - - task: UseDotNet@2 # About UseDotNet@2 task: - displayName: "Install .NET 8" - retryCountOnTaskFailure: 3 - inputs: - version: "8.x" - - template: /eng/pipelines/templates/steps/install-dotnet.yml - script: 'dotnet test /p:ArtifactsPackagesDir=$(Build.ArtifactStagingDirectory) --filter "Category=Integration" --logger trx $(Build.SourcesDirectory)/tools/test-proxy/' @@ -168,6 +162,12 @@ stages: CLONE_LOCATION: "$(Agent.BuildDirectory)/net_repo" steps: + - task: UseDotNet@2 # About UseDotNet@2 task: + displayName: "Install .NET 8" + retryCountOnTaskFailure: 3 + inputs: + version: "8.x" + - template: /eng/pipelines/templates/steps/install-dotnet.yml - pwsh: |