hiroyuki-sato commented on PR #46795: URL: https://github.com/apache/arrow/pull/46795#issuecomment-2969165159
I confirmed that "C# / AMD64 macOS 13 C# 8.0.x (pull_request)" error relates to this PR. Build passed without this change. https://github.com/apache/arrow/actions/runs/15625785800/job/44019635324 I'm not sure why this change cause error yet. ```diff diff --git a/ci/scripts/csharp_test.sh b/ci/scripts/csharp_test.sh index a435a83525..f521afc01d 100755 --- a/ci/scripts/csharp_test.sh +++ b/ci/scripts/csharp_test.sh @@ -30,8 +30,9 @@ if [ -z "${PYTHON}" ]; then fi fi ${PYTHON} -m pip install pyarrow find-libpython -export PYTHONNET_PYDLL=$(${PYTHON} -m find_libpython) +PYTHONNET_PYDLL=$(${PYTHON} -m find_libpython) +export PYTHONNET_PYDLL -pushd ${source_dir} +pushd "${source_dir}" dotnet test popd ``` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org