From e4c7ef82ebbace4f4cb54490991b7c4e0db4e3f6 Mon Sep 17 00:00:00 2001 From: andrew breja <2581815+breja@users.noreply.github.com> Date: Wed, 20 Feb 2019 23:17:40 -0500 Subject: [PATCH] Update azure-pipelines.yml --- azure-pipelines.yml | 37 +++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c23ced4..1819136 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,19 +1,24 @@ -# Starter pipeline -# Start with a minimal pipeline that you can customize to build and deploy your code. -# Add steps that build, run tests, deploy, and more: -# https://aka.ms/yaml - trigger: - master -pool: - vmImage: 'Ubuntu-16.04' - -steps: -- script: echo Hello, world! - displayName: 'Run a one-line script' - -- script: | - echo Add other tasks to build, test, and deploy your project. - echo See https://aka.ms/yaml - displayName: 'Run a multi-line script' +jobs: +- job: Linux + pool: + vmImage: 'Ubuntu-16.04' + steps: + - script: sudo apt-get install ninja-build gettext libtool libtool-bin autoconf automake cmake g++ pkg-config unzip + displayName: 'install dependencies' + +- job: macOS + pool: + vmImage: 'macOS-10.14' + steps: + - script: brew install ninja libtool automake cmake pkg-config gettext + displayName: 'install dependencies' + +- job: Windows + pool: + vmImage: 'vs2017-win2016' + steps: + - script: echo wut + displayName: 'install dependencies'