From 0559a5fd73d9a87e77a9d4a1e20a8d86975d191b Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Wed, 10 Oct 2018 15:03:32 -0700 Subject: [PATCH] Attempt to add MacOS pipelines support. --- azure-pipelines.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index dab028e6fa..866a67763c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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 + 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'