Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

Commit

Permalink
Remove mac/linux agents
Browse files Browse the repository at this point in the history
We can't build off Windows anyway due to: novotnyllc/MSBuildSdkExtras#224
  • Loading branch information
AArnott committed Aug 16, 2020
1 parent a75dbb0 commit 46a7df8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
9 changes: 4 additions & 5 deletions azure-pipelines/build.yml
Expand Up @@ -13,33 +13,32 @@ jobs:
displayName: Set build number

- template: dotnet.yml
- template: expand-template.yml

- job: Linux
condition: false
pool:
vmImage: Ubuntu 18.04
steps:
- checkout: self
clean: true
- template: install-dependencies.yml
- template: dotnet.yml
- template: expand-template.yml

- job: macOS
condition: false
pool:
vmImage: macOS-10.15
steps:
- checkout: self
clean: true
- template: install-dependencies.yml
- template: dotnet.yml
- template: expand-template.yml

- job: WrapUp
dependsOn:
- Windows
- Linux
- macOS
# - Linux
# - macOS
pool:
vmImage: Ubuntu 18.04
condition: succeededOrFailed()
Expand Down
16 changes: 8 additions & 8 deletions azure-pipelines/publish-codecoverage.yml
Expand Up @@ -3,14 +3,14 @@ steps:
artifact: coverageResults-Windows
displayName: Download Windows code coverage results
continueOnError: true
- download: current
artifact: coverageResults-Linux
displayName: Download Linux code coverage results
continueOnError: true
- download: current
artifact: coverageResults-macOS
displayName: Download macOS code coverage results
continueOnError: true
# - download: current
# artifact: coverageResults-Linux
# displayName: Download Linux code coverage results
# continueOnError: true
# - download: current
# artifact: coverageResults-macOS
# displayName: Download macOS code coverage results
# continueOnError: true
- powershell: |
dotnet tool install --tool-path obj dotnet-reportgenerator-globaltool --version 4.2.2 --configfile azure-pipelines/justnugetorg.nuget.config
Copy-Item -Recurse $(Pipeline.Workspace)/coverageResults-Windows/obj/* $(System.DefaultWorkingDirectory)/obj
Expand Down

0 comments on commit 46a7df8

Please sign in to comment.