From f0cd1f61c4516f53efaf6fdf2e3f5c2a447dd02c Mon Sep 17 00:00:00 2001 From: Gol-D-Ace Date: Tue, 12 Mar 2019 07:48:16 +0100 Subject: [PATCH] CI: Build for Linux on Azure Pipelines --- azure-pipelines.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3b4508055..ac52e15be 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -82,3 +82,21 @@ jobs: pathtoPublish: './build' artifactName: winbuild +- job: 'Build_Linux' + pool: + vmImage: 'ubuntu-16.04' + steps: + - script: git submodule update --init --recursive + displayName: 'Checkout Submodules' + - script: ./CI/install-dependencies-linux.sh + displayName: 'Install Dependencies' + + - script: ./CI/before-script-linux.sh + displayName: 'CMake' + + - bash: | + cd ./build + make -j4 + cd - + displayName: 'Build' +