Skip to content

Commit

Permalink
Always use latest operating systems in CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
efoerster committed Mar 4, 2020
1 parent 06bca75 commit 41ccaed
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ trigger:
jobs:
- job: Linux
pool:
vmImage: "ubuntu-16.04"
vmImage: "ubuntu-latest"
steps:
- script: |
sudo apt-get update
Expand All @@ -22,7 +22,7 @@ jobs:
linux: true
- job: Windows
pool:
vmImage: "vs2017-win2016"
vmImage: "windows-latest"
steps:
- template: .build-steps.yml
parameters:
Expand All @@ -31,20 +31,16 @@ jobs:
archiveType: "zip"
- job: macOS
pool:
vmImage: "macos-10.14"
vmImage: "macOS-latest"
steps:
- bash: |
curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --default-toolchain none
echo "##vso[task.prependpath]$HOME/.cargo/bin"
displayName: "Install rustup"
- template: .build-steps.yml
parameters:
executableName: "texlab"
archiveFile: "texlab-x86_64-macos.tar.gz"
archiveType: "tar"
- job: Publish
pool:
vmImage: "ubuntu-16.04"
vmImage: "ubuntu-latest"
dependsOn:
- Linux
- Windows
Expand Down

0 comments on commit 41ccaed

Please sign in to comment.