Skip to content

Commit

Permalink
Modified azure-pipeline.yml to use ubuntu-latest versus ubuntu-16.04 (s…
Browse files Browse the repository at this point in the history
…pacetelescope#1166)

* Modified azure-pipeline.yml to use ubuntu-latest versus ubuntu-16.04.  This was necessary
as support for Ubuntu 16.04 was removed from Azure DevOps on 18 October 2021.  See this
URL for details: actions/runner-images#3287

* Updated *all* instances of ubuntu-16.04 to ubuntu-latest.
  • Loading branch information
mdlpstsci authored and dulude committed Mar 9, 2022
1 parent 472a881 commit 30b3ba3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- job: 'PEP8'
pool:
vmImage: 'Ubuntu-16.04'
vmImage: 'ubuntu-latest'

steps:
- task: UsePythonVersion@0
Expand All @@ -45,7 +45,7 @@ jobs:
- job: 'Publish'
dependsOn: 'Linux'
pool:
vmImage: 'Ubuntu-16.04'
vmImage: 'ubuntu-latest'

steps:
- task: UsePythonVersion@0
Expand Down
2 changes: 1 addition & 1 deletion azure-templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
${{ if eq(parameters.os, 'macos') }}:
vmImage: macOS-10.14
${{ if eq(parameters.os, 'linux') }}:
vmImage: ubuntu-16.04
vmImage: ubuntu-latest

strategy:
matrix:
Expand Down

0 comments on commit 30b3ba3

Please sign in to comment.