Skip to content

Commit

Permalink
CI: Update to latest vmImage (#86)
Browse files Browse the repository at this point in the history
Currently Azure Pipelines is warning that the currently used vmImage is going to be deprecated very soon, this PR updates CI files to support latest vmImage versions.
  • Loading branch information
gus33000 authored Jul 17, 2021
1 parent c5d2fee commit 5a15641
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Tools/CI/Bootstrapper/Stage0.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ echo "Installing build components..."
# Host utilities
apt-get install git-core git
apt-get install build-essential
apt-get install python

# PowerShell
# Import the public repository GPG keys
curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -

# Register the Microsoft Ubuntu repository
curl https://packages.microsoft.com/config/ubuntu/14.04/prod.list | tee /etc/apt/sources.list.d/microsoft.list
curl https://packages.microsoft.com/config/ubuntu/20.04/prod.list | tee /etc/apt/sources.list.d/microsoft.list

# Update the list of products
apt-get update
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ trigger:
- LICENSE

pool:
vmImage: 'Ubuntu-16.04'
vmImage: 'Ubuntu-latest'

steps:
- script: sudo apt update
Expand Down

0 comments on commit 5a15641

Please sign in to comment.