From e55a06cc59f0f0ee3365f7da3f36ab32d7c38204 Mon Sep 17 00:00:00 2001 From: Shad Storhaug Date: Sun, 13 Oct 2024 11:57:55 +0700 Subject: [PATCH] azure-pipelines.yml: Pins the ubuntu builds to Ubuntu 22.04 LTS due to a .NET 5 OpenSSL dependency issue. --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 58731280..2ed06e91 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -223,7 +223,7 @@ stages: maximumAllowedFailures: 0 # Maximum allowed failures for a successful build Linux: osName: 'Linux' - imageName: 'ubuntu-latest' + imageName: 'ubuntu-22.04' # 24.04 now fails for net5.0 because of OpenSLL version issue, so we have to pin this. maximumAllowedFailures: 0 # Maximum allowed failures for a successful build macOS: osName: 'macOS'