Skip to content

Commit

Permalink
Use latest AP hosted agents (#371)
Browse files Browse the repository at this point in the history
* Use latest AP hosted agents

* Simplify CI structure
  • Loading branch information
quentinlesceller committed Mar 26, 2020
1 parent c42d5dd commit dceeda9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 20 deletions.
14 changes: 0 additions & 14 deletions .ci/install.yml

This file was deleted.

15 changes: 9 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ variables:
jobs:
- job: linux
pool:
vmImage: ubuntu-16.04
vmImage: ubuntu-latest
strategy:
matrix:
config/libwallet/api:
Expand All @@ -46,12 +46,11 @@ jobs:
CI_JOB: release
PLATFORM: linux-amd64
steps:
- template: '.ci/install.yml'
- template: '.ci/test.yml'
- template: '.ci/release.yml'
- job: macos
pool:
vmImage: macos-10.14
vmImage: macos-latest
strategy:
matrix:
test:
Expand All @@ -60,12 +59,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 @@ -74,6 +75,8 @@ jobs:
CI_JOB: release
PLATFORM: win-x64
steps:
- template: '.ci/install.yml'
- script: |
choco install -y llvm
displayName: Windows Install LLVM
- template: '.ci/test.yml'
- template: '.ci/windows-release.yml'

0 comments on commit dceeda9

Please sign in to comment.