Skip to content

Commit

Permalink
Fix Azure Pipelines and disable MacOS on Appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
RehanSaeed committed Aug 16, 2022
1 parent b843fce commit bdb9870
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
version: "{build}"

image:
- macOS
# - macOS
- Ubuntu
- Visual Studio 2022

Expand Down
10 changes: 5 additions & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit bdb9870

Please sign in to comment.