From bd4490391170e65c45ef0e3895c60b11bc511d82 Mon Sep 17 00:00:00 2001 From: Jiri Cincura Date: Thu, 9 Jan 2025 09:57:46 +0100 Subject: [PATCH 1/2] Update to macOS 15 images --- azure-pipelines-public.yml | 2 +- azure-pipelines.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines-public.yml b/azure-pipelines-public.yml index ef0887a72a5..9869407ccf0 100644 --- a/azure-pipelines-public.yml +++ b/azure-pipelines-public.yml @@ -93,7 +93,7 @@ stages: - job: macOS enablePublishTestResults: true pool: - vmImage: macOS-13 + vmImage: macOS-15 variables: # Rely on task Arcade injects, not auto-injected build step. - skipComponentGovernanceDetection: true diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a4efbbabf64..f2ae8ee2b98 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -142,7 +142,7 @@ extends: - job: macOS pool: name: Azure Pipelines - image: macOS-13 + image: macOS-15 os: macOS variables: # Rely on task Arcade injects, not auto-injected build step. From 3fee16e50fc2419a8e6363c56c1a947cee05825f Mon Sep 17 00:00:00 2001 From: Jiri Cincura Date: Tue, 14 Jan 2025 11:32:41 +0100 Subject: [PATCH 2/2] Add version logging. --- test/Microsoft.Data.Sqlite.Tests/SqliteConnectionTest.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/Microsoft.Data.Sqlite.Tests/SqliteConnectionTest.cs b/test/Microsoft.Data.Sqlite.Tests/SqliteConnectionTest.cs index 3093c9fb6c0..20146d09d61 100644 --- a/test/Microsoft.Data.Sqlite.Tests/SqliteConnectionTest.cs +++ b/test/Microsoft.Data.Sqlite.Tests/SqliteConnectionTest.cs @@ -9,12 +9,20 @@ using System.Linq; using Microsoft.Data.Sqlite.Properties; using Xunit; +using Xunit.Abstractions; using static SQLitePCL.raw; namespace Microsoft.Data.Sqlite; public class SqliteConnectionTest { + private readonly ITestOutputHelper _testOutputHelper; + + public SqliteConnectionTest(ITestOutputHelper testOutputHelper) + { + _testOutputHelper = testOutputHelper; + } + [Fact] public void Ctor_sets_connection_string() { @@ -122,6 +130,7 @@ public void ServerVersion_returns_value() var connection = new SqliteConnection(); var version = connection.ServerVersion; + _testOutputHelper.WriteLine(version); Assert.StartsWith("3.", version); }