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'