Commit b3ea4a51 by Patrick Steinhardt

Update .vsts-ci.yml

(cherry picked from commit 7238a1e8)
parent fe56cd6c
...@@ -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_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
...@@ -68,10 +68,10 @@ phases: ...@@ -68,10 +68,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
...@@ -85,10 +85,9 @@ phases: ...@@ -85,10 +85,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
...@@ -97,10 +96,9 @@ phases: ...@@ -97,10 +96,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
...@@ -109,10 +107,9 @@ phases: ...@@ -109,10 +107,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
...@@ -127,10 +124,9 @@ phases: ...@@ -127,10 +124,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