From fcb5fc85d14befeea4af2629b2d38ad52f501635 Mon Sep 17 00:00:00 2001 From: Sandro Hanea <40202887+sandrohanea@users.noreply.github.com> Date: Sat, 24 Jan 2026 15:45:24 +0100 Subject: [PATCH 1/4] Bumped nuget versions --- Directory.Packages.props | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 4294a467..5386e4c0 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -1,14 +1,23 @@ + + 10.0.30 + - + + + + + + + @@ -20,7 +29,7 @@ - + From 87b6b453211885ef33f0d46608e258838be40fb6 Mon Sep 17 00:00:00 2001 From: Sandro Hanea <40202887+sandrohanea@users.noreply.github.com> Date: Sun, 25 Jan 2026 11:19:28 +0100 Subject: [PATCH 2/4] Removed ILLinks --- Directory.Packages.props | 1 - 1 file changed, 1 deletion(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 5386e4c0..1d17fa9a 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -12,7 +12,6 @@ - From ce9f8b7954915780297aa64b44cf959609423e61 Mon Sep 17 00:00:00 2001 From: Sandro Hanea <40202887+sandrohanea@users.noreply.github.com> Date: Sun, 25 Jan 2026 11:27:36 +0100 Subject: [PATCH 3/4] Add sudo to XHarness simulator installation --- .github/workflows/dotnet-maui.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-maui.yml b/.github/workflows/dotnet-maui.yml index 37d7244a..380be017 100644 --- a/.github/workflows/dotnet-maui.yml +++ b/.github/workflows/dotnet-maui.yml @@ -50,7 +50,7 @@ jobs: run: dotnet tool install Microsoft.DotNet.XHarness.CLI --global --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json --version "10.0.0-*" - name: Ensure simulator - run: xharness apple simulators install ios-simulator_26.2 + run: sudo xharness apple simulators install ios-simulator_26.2 - name: Build ios-simulator run: dotnet build ./tests/Whisper.net.Tests.Maui/Whisper.net.Tests.Maui.csproj -c Debug -f net10.0-ios -r iossimulator-arm64 -p:EmbedAssembliesIntoAppBundle=true -p:CodesignKey="" -p:CodesignProvision="" @@ -148,7 +148,7 @@ jobs: run: dotnet tool install Microsoft.DotNet.XHarness.CLI --global --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json --version "10.0.0-*" - name: Ensure simulator - run: xharness apple simulators install ios-simulator_26.2 + run: sudo xharness apple simulators install ios-simulator_26.2 - name: run ios tests run: xharness apple test --app=./maui-build-artifacts/net10.0-ios/iossimulator-arm64/Whisper.net.Tests.Maui.app --output-directory=./test-results/ios --target=ios-simulator-64 --device="iPhone 17" --timeout "00:30:00" From 9936972699bae34e41c9953b97eeeed1c954283b Mon Sep 17 00:00:00 2001 From: Sandro Hanea <40202887+sandrohanea@users.noreply.github.com> Date: Sun, 25 Jan 2026 11:38:20 +0100 Subject: [PATCH 4/4] removed sudo as root doesn't have dotnet --- .github/workflows/dotnet-maui.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-maui.yml b/.github/workflows/dotnet-maui.yml index 380be017..37d7244a 100644 --- a/.github/workflows/dotnet-maui.yml +++ b/.github/workflows/dotnet-maui.yml @@ -50,7 +50,7 @@ jobs: run: dotnet tool install Microsoft.DotNet.XHarness.CLI --global --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json --version "10.0.0-*" - name: Ensure simulator - run: sudo xharness apple simulators install ios-simulator_26.2 + run: xharness apple simulators install ios-simulator_26.2 - name: Build ios-simulator run: dotnet build ./tests/Whisper.net.Tests.Maui/Whisper.net.Tests.Maui.csproj -c Debug -f net10.0-ios -r iossimulator-arm64 -p:EmbedAssembliesIntoAppBundle=true -p:CodesignKey="" -p:CodesignProvision="" @@ -148,7 +148,7 @@ jobs: run: dotnet tool install Microsoft.DotNet.XHarness.CLI --global --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json --version "10.0.0-*" - name: Ensure simulator - run: sudo xharness apple simulators install ios-simulator_26.2 + run: xharness apple simulators install ios-simulator_26.2 - name: run ios tests run: xharness apple test --app=./maui-build-artifacts/net10.0-ios/iossimulator-arm64/Whisper.net.Tests.Maui.app --output-directory=./test-results/ios --target=ios-simulator-64 --device="iPhone 17" --timeout "00:30:00"