From f12f7e917b6d48816e6e3845c40d387e5fe6032a Mon Sep 17 00:00:00 2001 From: Henry Fredrick Schreiner Date: Sat, 11 May 2019 20:28:26 +0200 Subject: [PATCH] Adding more jobs to Azure --- azure-pipelines.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 69dd377a9..a82b429f0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -32,4 +32,26 @@ jobs: steps: - template: .ci/azure-steps.yml +- job: Docker + pool: + vmImage: 'ubuntu-16.04' + strategy: + matrix: + gcc9: + containerImage: gcc:9 + gcc4.7: + containerImage: gcc:4.7 + clang3.5: + containerImage: silkeh/clang:3.5 + clang8: + containerImage: silkeh/clang:8 + container: $[ variables['containerImage'] ] + steps: + - script: | + mkdir cmake && \ + wget -qO- "https://cmake.org/files/v3.14/cmake-3.14.3-Linux-x86_64.tar.gz" | tar --strip-components=1 -xz -C /cmake + displayName: Install CMake + - bash: echo "##vso[task.prependpath]/cmake/bin" + displayName: Add CMake to PATH + - template: .ci/azure-steps.yml