Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .azure/default-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
${{ if eq(parameters.agentOs, 'macOS') }}:
vmImage: macOS-10.14
${{ if eq(parameters.agentOs, 'Linux') }}:
vmImage: ubuntu-16.04
vmImage: ubuntu-20.04
${{ if eq(parameters.agentOs, 'Windows') }}:
vmImage: windows-2019
steps:
Expand Down
11 changes: 11 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,17 @@ stages:
- bash: "sudo apt install valgrind"
displayName: install valgrind

- template: .azure/default-build.yml
parameters:
agentOs: Linux
jobName: Linux_gcc10_Build_Test
useCppRestSDK: false
beforeBuild:
- bash: "sudo apt install valgrind"
displayName: install valgrind
variables:
CXX: g++-10

- template: .azure/default-build.yml
parameters:
agentOs: Windows
Expand Down