From 40f5d84d96535fdaab83804a59a3506b213eac4a Mon Sep 17 00:00:00 2001 From: Carlos Villavicencio Date: Wed, 6 Nov 2024 08:28:21 -0500 Subject: [PATCH 1/2] Upgrade Azure Pipelines vm images --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index cc8f6b887..989745755 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -58,14 +58,14 @@ jobs: - template: azure-pipelines-templates/run-tests.yml parameters: name: Linux - vm_image: 'ubuntu-20.04' + vm_image: 'ubuntu-latest' - template: azure-pipelines-templates/run-tests.yml parameters: name: macOS - vm_image: 'macOS-12' + vm_image: 'macOS-latest' - template: azure-pipelines-templates/run-tests.yml parameters: name: Windows - vm_image: 'windows-2022' + vm_image: 'windows-latest' From ad17908d3260acbc173c2eb62907fa713c13cb9f Mon Sep 17 00:00:00 2001 From: Carlos Villavicencio Date: Wed, 6 Nov 2024 08:42:49 -0500 Subject: [PATCH 2/2] Downgrade codecov to support x86_64 architecture --- azure-pipelines-templates/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines-templates/run-tests.yml b/azure-pipelines-templates/run-tests.yml index 551c06989..edf5ffe4a 100644 --- a/azure-pipelines-templates/run-tests.yml +++ b/azure-pipelines-templates/run-tests.yml @@ -146,7 +146,7 @@ jobs: displayName: Uploading code coverage - ${{ else }}: - script: | - curl -Os https://uploader.codecov.io/latest/macos/codecov + curl -Os https://uploader.codecov.io/v0.7.3/macos/codecov chmod +x codecov ./codecov -f coverage.xml displayName: Uploading code coverage