hiroyuki-sato commented on PR #51287: URL: https://github.com/apache/arrow/pull/51287#issuecomment-5627424105
Starting with build 5, the `cgo` and `nocgo` variants are explicitly identified in the build string. Currently, `mamba install go` selects the `nocgo` variant: | Go version | Build | Build number | Notes | |---|---|---:|---| | 1.27.1 | `nocgo_h8a70693_5` | 5 | Current `nocgo` variant | | 1.27.1 | `cgo_haf5475a_5` | 5 | Current `cgo` variant | | 1.27.1 | `haac8767_4` | 4 | Previous build | | 1.27.1 | `h0bf09dd_4` | 4 | Previous build | | 1.27.1 | `h0bf09dd_3` | 3 | Previous build | | 1.27.1 | `haac8767_3` | 3 | Previous build | | 1.27.1 | `h0bf09dd_2` | 2 | Previous build | | 1.27.1 | `haac8767_2` | 2 | Previous build | | 1.27.1 | `he1b14cc_1` | 1 | Previous build | | 1.27.1 | `h1a1113d_1` | 1 | Previous build | | 1.27.1 | `h1a1113d_0` | 0 | Initial build | | 1.27.1 | `he1b14cc_0` | 0 | Initial build | ``` podman run -it --rm condaforge/miniforge3:latest mamba repoquery search 'go=1.27.1' --json | jq -r '.result.pkgs[] | "\(.name) \(.version) \(.build) \(.subdir)"' | perl -pe 's/^\s+//' go 1.27.1 nocgo_h8a70693_5 linux-64 go 1.27.1 cgo_haf5475a_5 linux-64 go 1.27.1 haac8767_4 linux-64 go 1.27.1 h0bf09dd_4 linux-64 go 1.27.1 h0bf09dd_3 linux-64 go 1.27.1 haac8767_3 linux-64 go 1.27.1 h0bf09dd_2 linux-64 go 1.27.1 haac8767_2 linux-64 go 1.27.1 he1b14cc_1 linux-64 go 1.27.1 h1a1113d_1 linux-64 go 1.27.1 h1a1113d_0 linux-64 go 1.27.1 he1b14cc_0 linux-64 ``` -- 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]
