1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-02 21:53:51 +00:00
CLI11/azure-pipelines.yml
Henry Schreiner 49ab339a51
Set up CI with Azure Pipelines (#244)
* Set up CI with Azure Pipelines

* Adding more agents to Azure
2019-02-28 13:12:51 +01:00

27 lines
524 B
YAML

# C/C++ with GCC
# Build your C/C++ project with GCC using make.
# Add steps that publish test results, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/c-cpp/gcc
trigger:
- master
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-16.04'
steps:
- template: .ci/azure-steps.yml
- job: macOS
pool:
vmImage: 'macOS-10.13'
steps:
- template: .ci/azure-steps.yml
- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- template: .ci/azure-steps.yml