From 05b6034696c1738ae8e44c3553b55ef56fbac4e5 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" Date: Wed, 19 Sep 2018 18:06:52 +0000 Subject: [PATCH] Set up CI with Azure Pipelines --- azure-pipelines.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000000..04e44a6d199 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,33 @@ +# 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/vsts/pipelines/apps/c-cpp/gcc + +#pool: + #vmImage: 'Ubuntu 16.04' + +jobs: +#- job: Linux + #pool: + #vmImage: 'ubuntu-16.04' + #steps: + #- script: echo hello from Linux +#- job: macOS + #pool: + #vmImage: 'xcode9-macos10.13' + #steps: + #- script: echo hello from macOS +- job: Windows + pool: + vmImage: 'vs2017-win2016' + steps: + - script: set + - script: | + set PATH=%CONDA%/Scripts;%PATH% + conda info + - script: conda info + +#steps: +#- script: | + #make + #displayName: 'make'