Unverified Commit 7238a1e8 by David Staheli Committed by GitHub

Update .vsts-ci.yml

parent 40c3a974
...@@ -5,11 +5,11 @@ trigger: ...@@ -5,11 +5,11 @@ trigger:
- master - master
- maint/* - maint/*
phases: jobs:
- phase: linux_trusty_gcc_openssl - job: linux_trusty_gcc_openssl
displayName: 'Linux (Trusty; GCC; OpenSSL)' displayName: 'Linux (Trusty; GCC; OpenSSL)'
queue: pool:
name: 'Hosted Linux Preview' vmImage: 'Ubuntu 16.04'
steps: steps:
- task: Docker@0 - task: Docker@0
displayName: Build displayName: Build
...@@ -37,10 +37,10 @@ phases: ...@@ -37,10 +37,10 @@ phases:
containerCommand: '/src/ci/test.sh' containerCommand: '/src/ci/test.sh'
detached: false detached: false
- phase: linux_trusty_gcc_mbedtls - job: linux_trusty_gcc_mbedtls
displayName: 'Linux (Trusty; GCC; mbedTLS)' displayName: 'Linux (Trusty; GCC; mbedTLS)'
queue: pool:
name: 'Hosted Linux Preview' vmImage: 'Ubuntu 16.04'
steps: steps:
- task: Docker@0 - task: Docker@0
displayName: Build displayName: Build
...@@ -70,10 +70,10 @@ phases: ...@@ -70,10 +70,10 @@ phases:
containerCommand: '/src/ci/test.sh' containerCommand: '/src/ci/test.sh'
detached: false detached: false
- phase: linux_trusty_clang_openssl - job: linux_trusty_clang_openssl
displayName: 'Linux (Trusty; Clang; OpenSSL)' displayName: 'Linux (Trusty; Clang; OpenSSL)'
queue: pool:
name: 'Hosted Linux Preview' vmImage: 'Ubuntu 16.04'
steps: steps:
- task: Docker@0 - task: Docker@0
displayName: Build displayName: Build
...@@ -101,10 +101,10 @@ phases: ...@@ -101,10 +101,10 @@ phases:
containerCommand: '/src/ci/test.sh' containerCommand: '/src/ci/test.sh'
detached: false detached: false
- phase: linux_trusty_clang_mbedtls - job: linux_trusty_clang_mbedtls
displayName: 'Linux (Trusty; Clang; mbedTLS)' displayName: 'Linux (Trusty; Clang; mbedTLS)'
queue: pool:
name: 'Hosted Linux Preview' vmImage: 'Ubuntu 16.04'
steps: steps:
- task: Docker@0 - task: Docker@0
displayName: Build displayName: Build
...@@ -134,10 +134,10 @@ phases: ...@@ -134,10 +134,10 @@ phases:
containerCommand: '/src/ci/test.sh' containerCommand: '/src/ci/test.sh'
detached: false detached: false
- phase: macos - job: macos
displayName: 'macOS' displayName: 'macOS'
queue: pool:
name: 'Hosted macOS Preview' vmImage: 'macOS 10.13'
steps: steps:
- bash: . '$(Build.SourcesDirectory)/ci/setup-osx.sh' - bash: . '$(Build.SourcesDirectory)/ci/setup-osx.sh'
displayName: Setup displayName: Setup
...@@ -151,10 +151,9 @@ phases: ...@@ -151,10 +151,9 @@ phases:
TMPDIR: $(Agent.TempDirectory) TMPDIR: $(Agent.TempDirectory)
LEAK_CHECK: leaks LEAK_CHECK: leaks
- phase: windows_vs_amd64 - job: windows_vs_amd64
displayName: 'Windows (Visual Studio; amd64)' displayName: 'Windows (Visual Studio; amd64)'
queue: pool: Hosted
name: Hosted
steps: steps:
- powershell: . '$(Build.SourcesDirectory)\ci\build.ps1' - powershell: . '$(Build.SourcesDirectory)\ci\build.ps1'
displayName: Build displayName: Build
...@@ -163,10 +162,9 @@ phases: ...@@ -163,10 +162,9 @@ phases:
- powershell: . '$(Build.SourcesDirectory)\ci\test.ps1' - powershell: . '$(Build.SourcesDirectory)\ci\test.ps1'
displayName: Test displayName: Test
- phase: windows_vs_x86 - job: windows_vs_x86
displayName: 'Windows (Visual Studio; x86)' displayName: 'Windows (Visual Studio; x86)'
queue: pool: Hosted
name: Hosted
steps: steps:
- powershell: . '$(Build.SourcesDirectory)\ci\build.ps1' - powershell: . '$(Build.SourcesDirectory)\ci\build.ps1'
displayName: Build displayName: Build
...@@ -175,10 +173,9 @@ phases: ...@@ -175,10 +173,9 @@ phases:
- powershell: . '$(Build.SourcesDirectory)\ci\test.ps1' - powershell: . '$(Build.SourcesDirectory)\ci\test.ps1'
displayName: Test displayName: Test
- phase: windows_mingw_amd64 - job: windows_mingw_amd64
displayName: 'Windows (MinGW; amd64)' displayName: 'Windows (MinGW; amd64)'
queue: pool: Hosted
name: Hosted
steps: steps:
- powershell: . '$(Build.SourcesDirectory)\ci\setup-mingw.ps1' - powershell: . '$(Build.SourcesDirectory)\ci\setup-mingw.ps1'
displayName: Setup displayName: Setup
...@@ -193,10 +190,9 @@ phases: ...@@ -193,10 +190,9 @@ phases:
- powershell: . '$(Build.SourcesDirectory)\ci\test.ps1' - powershell: . '$(Build.SourcesDirectory)\ci\test.ps1'
displayName: Test displayName: Test
- phase: windows_mingw_x86 - job: windows_mingw_x86
displayName: 'Windows (MinGW; x86)' displayName: 'Windows (MinGW; x86)'
queue: pool: Hosted
name: Hosted
steps: steps:
- powershell: . '$(Build.SourcesDirectory)\ci\setup-mingw.ps1' - powershell: . '$(Build.SourcesDirectory)\ci\setup-mingw.ps1'
displayName: Setup displayName: Setup
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment