Skip to content

Commit

Permalink
Fix pipeline for Windows and Mac (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiascibien authored Jun 23, 2022
1 parent 7ed678c commit 2dd1fa7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .azure/build-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ jobs:
vmImage: ${{ parameters.vmImage }}
continueOnError: false
steps:
- task: UseDotNet@2
inputs:
packageType: sdk
version: 6.0.x
- task: DotNetCoreCLI@2
inputs:
command: 'build'
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ stages:
- template: .azure/build-template.yml # Template reference
parameters:
name: windows
vmImage: 'windows-2019'
vmImage: 'windows-2022'
artifact: windows
runtime: win-x64
- template: .azure/build-template.yml # Template reference
parameters:
name: macos
vmImage: 'macOS-10.14'
vmImage: 'macOS-10.15'
artifact: macos
runtime: osx-x64

Expand Down

0 comments on commit 2dd1fa7

Please sign in to comment.