Skip to content

Commit 34832b6

Browse files
committed
Attempt to add MacOS pipelines support.
1 parent 625c666 commit 34832b6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

azure-pipelines.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,19 @@ jobs:
3939
cd build.release
4040
ninja -j 2
4141
displayName: 'Run ninja'
42+
- job: MacOS_Debug
43+
pool:
44+
vmImage: 'macOS-10.13'
45+
steps:
46+
- script: brew install boost openssl ninja
47+
displayName: Berw install dependencies
48+
- script: mkdir build.debug
49+
displayName: Make build.debug
50+
- task: CMake@1
51+
inputs:
52+
workingDirectory: 'build.debug'
53+
cmakeArgs: '-G Ninja -DCMAKE_BUILD_TYPE=Debug ..'
54+
- script: |
55+
cd build.debug
56+
ninja -j 2
57+
displayName: 'Run ninja'

0 commit comments

Comments
 (0)