Skip to content

Commit

Permalink
Adding more jobs to Azure
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed May 11, 2019
1 parent e4e5d6f commit e4ded0b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit e4ded0b

Please sign in to comment.