Skip to content
Closed
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
33 changes: 33 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -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'