raulcd commented on issue #33783: URL: https://github.com/apache/arrow/issues/33783#issuecomment-1397240744
I've found that if I install dotnet 7.0.102 via snap I get the above segmentation fault but if I install it via the Microsoft debian repositories: ``` $ wget https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb $ sudo dpkg -i packages-microsoft-prod.deb $ sudo apt update $ sudo apt install dotnet-sdk-7.0 ``` I get a failure around some tests only supporting .NET 6.0: ``` A total of 1 test files matched the specified pattern. Testhost process for source(s) '/tmp/arrow-11.0.0.kFKaf/apache-arrow-11.0.0/csharp/artifacts/Apache.Arrow.Tests/Debug/net6.0/Apache.Arrow.Tests.dll' exited with error: You must install or update .NET to run this application. App: /tmp/arrow-11.0.0.kFKaf/apache-arrow-11.0.0/csharp/artifacts/Apache.Arrow.Tests/Debug/net6.0/testhost.dll Architecture: x64 Framework: 'Microsoft.NETCore.App', version '6.0.0' (x64) .NET location: /usr/share/dotnet/ The following frameworks were found: 7.0.2 at [/usr/share/dotnet/shared/Microsoft.NETCore.App] Learn about framework resolution: https://aka.ms/dotnet/app-launch-failed To install missing framework, download: https://aka.ms/dotnet-core-applaunch?framework=Microsoft.NETCore.App&framework_version=6.0.0&arch=x64&rid=ubuntu.22.04-x64 . Please check the diagnostic logs for more information. Test Run Aborted. ``` The segmentation fault seems to be a long standing issue of installing dotnet via snap, see: https://github.com/dotnet/runtime/issues/67465 and https://github.com/dotnet/runtime/issues/51322#issuecomment-890306629 We seem to only support .NET 6.0, right? https://github.com/apache/arrow/pull/12870/files @kou @eerhardt @westonpace Are we expected to support the new .NET 7.0? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
