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' +