[ 
https://issues.apache.org/jira/browse/ARROW-5695?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16872730#comment-16872730
 ] 

Sutou Kouhei commented on ARROW-5695:
-------------------------------------

Yes. But we can use just {{test_csharp()}}.

We should use the following instead of {{~/.dotnet/tools/sourcelink}}:

{noformat}
PATH=$HOME/.dotnet/tools:$PATH
sourcelink ...
{noformat}

Because verifiers may not install {{sourcelink}} to {{~/.dotnet/tools/}}.

The following code may be better for verifiers who don't install {{sourcelink}} 
yet:

{noformat}
if ! which sourcelink > /dev/null 2>&1; then
  dotnet tool install --tool-path $PWD/bin sourcelink
  PATH=$PWD/bin:$PATH
fi
{noformat}

Auto {{dotnet}} install may be useful. We did the same thing for Python 
(miniconda) and Rust.

https://dotnet.microsoft.com/download/dotnet-core/2.2#sdk-2.2.300 lists URLs:

  * Linux: 
https://download.visualstudio.microsoft.com/download/pr/5e92f45b-384e-41b9-bf8d-c949684e20a1/67a98aa2a4e441245d6afe194bd79b9b/dotnet-sdk-2.2.300-linux-x64.tar.gz
 via 
https://dotnet.microsoft.com/download/thank-you/dotnet-sdk-2.2.300-linux-x64-binaries
  * macOS: 
https://download.visualstudio.microsoft.com/download/pr/328d95ad-eb94-4d1f-a4a9-2a35dbfea719/4913918a65ae135af1c8823f04061708/dotnet-sdk-2.2.300-osx-x64.tar.gz
 via 
https://dotnet.microsoft.com/download/thank-you/dotnet-sdk-2.2.300-macos-x64-binaries


> [C#][Release] Run sourcelink test in verify-release-candidate.sh
> ----------------------------------------------------------------
>
>                 Key: ARROW-5695
>                 URL: https://issues.apache.org/jira/browse/ARROW-5695
>             Project: Apache Arrow
>          Issue Type: Improvement
>          Components: C#
>            Reporter: Yosuke Shiro
>            Assignee: Yosuke Shiro
>            Priority: Blocker
>             Fix For: 0.14.0
>
>
> Follow up of 
> https://github.com/apache/arrow/pull/4488#pullrequestreview-253110667.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to