adamreeve commented on PR #200: URL: https://github.com/apache/arrow-dotnet/pull/200#issuecomment-3587220071
I don't think the setup-dotnet action is the problem, it looks like .NET 10 SDK is actually installed on the runner images already, eg. https://github.com/apache/arrow-dotnet/actions/runs/19713256024/job/56479218949#step:3:12 For the integration tests, I think the Docker image in the main arrow repository needs updating if I've understood how these work: https://github.com/apache/arrow/blob/fa41b2674bfab627ec1c69b4b4fb52d9caff8c15/ci/docker/ubuntu-22.04-csharp.dockerfile#L19 And it looks like the problem with the verification step is that the tests are run with the .NET 8 SDK as well as .NET 10, and when run with .NET 8 they can't build the .NET 10 target. We might just need to pass the `--framework` argument to `dotnet test` and only run the tests for one framework at a time? -- 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]
