Skip to content

Commit

Permalink
Use latest hosted agent for CI (#3278)
Browse files Browse the repository at this point in the history
* Use latest hosted agent for CI
  • Loading branch information
quentinlesceller authored Apr 14, 2020
1 parent d7e6ac6 commit e76dda6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 23 deletions.
17 changes: 0 additions & 17 deletions .ci/install.yml

This file was deleted.

20 changes: 14 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ variables:
jobs:
- job: linux
pool:
vmImage: ubuntu-16.04
vmImage: ubuntu-latest
strategy:
matrix:
servers:
Expand All @@ -50,12 +50,15 @@ jobs:
CI_JOB: release
PLATFORM: linux-amd64
steps:
- template: '.ci/install.yml'
- script: |
sudo apt-get update -yqq
sudo apt-get install -yqq --no-install-recommends libncursesw5-dev
displayName: Linux Install Dependencies
- template: '.ci/test.yml'
- template: '.ci/release.yml'
- job: macos
pool:
vmImage: macos-10.14
vmImage: macos-latest
strategy:
matrix:
test:
Expand All @@ -64,12 +67,14 @@ jobs:
CI_JOB: release
PLATFORM: macos
steps:
- template: '.ci/install.yml'
- script: |
brew uninstall llvm
displayName: macOS Uninstall LLVM
- template: '.ci/test.yml'
- template: '.ci/release.yml'
- job: windows
pool:
vmImage: windows-2019
vmImage: windows-latest
strategy:
matrix:
test:
Expand All @@ -78,6 +83,9 @@ jobs:
CI_JOB: release
PLATFORM: win-x64
steps:
- template: '.ci/install.yml'
- script: |
git apply .ci/win.patch
choco install -y llvm
displayName: Windows Install Dependencies
- template: '.ci/test.yml'
- template: '.ci/windows-release.yml'

0 comments on commit e76dda6

Please sign in to comment.