From 076ef622399d68e61f086b406edfb842e26a41ff Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Fri, 28 Feb 2020 17:50:56 -0500 Subject: [PATCH 1/2] CI: tweak the vm images we use on azure This is prompted by the osx image we were using being deprecated [1]. Looking at [2] to update the osx images, found we are now a version behind on both win and linux as well. Change so that the newer python versions run on newer images. [1] https://devblogs.microsoft.com/devops/removing-older-images-in-azure-pipelines-hosted-pools/ [2] https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops --- azure-pipelines.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 505aa3670124..fc5780f3f442 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,16 +12,16 @@ strategy: vmImage: 'ubuntu-16.04' python.version: '3.7' Linux_py38: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' python.version: '3.8' macOS_py36: - vmImage: 'xcode9-macOS10.13' + vmImage: 'macOS-10.14' python.version: '3.6' macOS_py37: - vmImage: 'xcode9-macOS10.13' + vmImage: 'macOS-10.15' python.version: '3.7' macOS_py38: - vmImage: 'xcode9-macOS10.13' + vmImage: 'macOS-latest' python.version: '3.8' Windows_py36: vmImage: 'vs2017-win2016' @@ -30,7 +30,7 @@ strategy: vmImage: 'vs2017-win2016' python.version: '3.7' Windows_py38: - vmImage: 'vs2017-win2016' + vmImage: 'windows-latest' python.version: '3.8' Windows_pyPre: vmImage: 'vs2017-win2016' From af966f4b1506ee933a85368b2bffb5344cdc23bb Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Sat, 29 Feb 2020 18:22:53 -0500 Subject: [PATCH 2/2] CI: revert back to 16.04 ubuntu We need to fix account for the changes to latex before we can bump this. --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fc5780f3f442..20185399b2fb 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,7 +12,7 @@ strategy: vmImage: 'ubuntu-16.04' python.version: '3.7' Linux_py38: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-16.04' python.version: '3.8' macOS_py36: vmImage: 'macOS-10.14'