-
Notifications
You must be signed in to change notification settings - Fork 912
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nanoarrow uses package override for proper pinned versions generation (…
…#15515) The usage of `PATCH_COMMAND` with `rapids_cpm_find` isn't capturable by `+rapids_cpm_generate_pinned_versions`. So we use a nanoarrow json override file to hold the patch we need applied and the custom SHA1 to check out. Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Jason Lowe (https://github.com/jlowe) - Vyas Ramasubramani (https://github.com/vyasr) URL: #15515
- Loading branch information
1 parent
888e9d5
commit af33b0a
Showing
2 changed files
with
24 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
{ | ||
"packages" : { | ||
"nanoarrow" : { | ||
"version" : "0.4.0", | ||
"git_url" : "https://github.com/apache/arrow-nanoarrow.git", | ||
"git_tag" : "c97720003ff863b81805bcdb9f7c91306ab6b6a8", | ||
"git_shallow" : false, | ||
"patches" : [ | ||
{ | ||
"file" : "${current_json_dir}/nanoarrow_cmake.diff", | ||
"issue" : "Fix add support for global setup to initialize RMM in nvbench [https://github.com/NVIDIA/nvbench/pull/123]", | ||
"fixed_in" : "0.5.0" | ||
} | ||
] | ||
} | ||
} | ||
} |