From bdb98705c65ad70fc34d14de8755232c478aba02 Mon Sep 17 00:00:00 2001 From: Muhammad Rehan Saeed Date: Tue, 16 Aug 2022 15:25:52 +0100 Subject: [PATCH] Fix Azure Pipelines and disable MacOS on Appveyor --- appveyor.yml | 2 +- azure-pipelines.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 7eb1f070..a47c2cad 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,7 +3,7 @@ version: "{build}" image: - - macOS + # - macOS - Ubuntu - Visual Studio 2022 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f5c34441..fdd55ebf 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -43,17 +43,17 @@ stages: steps: - checkout: self lfs: true - - task: UseDotNet@2.207.2 + - task: UseDotNet@2 displayName: "Install .NET Core 3.1 SDK" inputs: packageType: "sdk" version: 3.1.x - - task: UseDotNet@2.207.2 + - task: UseDotNet@2 displayName: "Install .NET Core 5.0 SDK" inputs: packageType: "sdk" version: 5.0.x - - task: UseDotNet@2.207.2 + - task: UseDotNet@2 displayName: "Install .NET Core SDK" inputs: packageType: "sdk" @@ -70,12 +70,12 @@ stages: - pwsh: "dotnet cake --target=Pack" displayName: "Dotnet Cake Pack" failOnStderr: true - - task: PublishTestResults@2.203.0 + - task: PublishTestResults@2 displayName: "Publish Test Results" inputs: testResultsFormat: "VSTest" testResultsFiles: "**/*.trx" - - task: PublishCodeCoverageResults@2.198.0 + - task: PublishCodeCoverageResults@1 inputs: codeCoverageTool: cobertura summaryFileLocation: "**/*.cobertura.xml"