From 1ea71b75719058a76cc561b147a8c0bab6e69272 Mon Sep 17 00:00:00 2001 From: Balamurali Pandranki Date: Mon, 24 Jun 2019 17:13:36 +0530 Subject: [PATCH] Add Azure Pipelines Config --- azure-pipelines.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..14251b3a3d --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,25 @@ +jobs: + - job: LinuxBuild + pool: + vmImage: 'ubuntu-16.04' + displayName: "V Linux Build" + steps: + - script: | + displayName: 'Install Dependencies' + - script: | + cd compiler && make + displayName: 'Build V' + - job: WindowsBuild + pool: + vmImage: 'vs2017-win2016' + displayName: "V Windows Build" + - job: OSXBuild + pool: + vmImage: 'macOS-10.13' + displayName: "V MacOSX Build" + steps: + - script: | + displayName: 'Install Dependencies' + - script: | + cd compiler && make + displayName: 'Build V'