Skip to content

Commit

Permalink
Attempt to add MacOS pipelines support.
Browse files Browse the repository at this point in the history
  • Loading branch information
BillyONeal committed Oct 10, 2018
1 parent 625c666 commit 34832b6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions azure-pipelines.yml
Expand Up @@ -39,3 +39,19 @@ jobs:
cd build.release
ninja -j 2
displayName: 'Run ninja'
- job: MacOS_Debug
pool:
vmImage: 'macOS-10.13'
steps:
- script: brew install boost openssl ninja
displayName: Berw install dependencies
- script: mkdir build.debug
displayName: Make build.debug
- task: CMake@1
inputs:
workingDirectory: 'build.debug'
cmakeArgs: '-G Ninja -DCMAKE_BUILD_TYPE=Debug ..'
- script: |
cd build.debug
ninja -j 2
displayName: 'Run ninja'

0 comments on commit 34832b6

Please sign in to comment.