h-vetinari commented on PR #14102: URL: https://github.com/apache/arrow/pull/14102#issuecomment-1248614739
> Could you share the URL for the error? It's in the crossbow runs from [this comment](https://github.com/apache/arrow/pull/14102#issuecomment-1246490419). The updates in this PR correspond to the state of the feedstock, with (essentially) the only change that here the recipe is building from the master branch rather than from a tagged version, i.e. after importing the [`recipe`](https://github.com/conda-forge/arrow-cpp-feedstock/tree/main/recipe) folder into `dev/tasks/conda-recipes/arrow-cpp`, I did: ```diff diff --git a/dev/tasks/conda-recipes/arrow-cpp/meta.yaml b/dev/tasks/conda-recipes/arrow-cpp/meta.yaml index 107b8433a..fd0625296 100644 --- a/dev/tasks/conda-recipes/arrow-cpp/meta.yaml +++ b/dev/tasks/conda-recipes/arrow-cpp/meta.yaml @@ -1,6 +1,7 @@ -{% set version = "9.0.0" %} +# NOTE: In constrast to the conda-forge recipe, ARROW_VERSION is a templated variable here. +{% set version = ARROW_VERSION %} {% set cuda_enabled = cuda_compiler_version != "None" %} -{% set build_ext_version = "3.0.0" %} +{% set build_ext_version = ARROW_VERSION %} {% set build_ext = "cuda" if cuda_enabled else "cpu" %} {% set proc_build_number = "0" %} {% set llvm_version = "14" %} ``` -- 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]
