Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ARROW-17251: [CI][Conan] Enable Flight #13761

Merged
merged 4 commits into from
Aug 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 30 additions & 2 deletions ci/conan/all/conandata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
# SOFTWARE.

sources:
"8.0.1":
url: "https://github.com/apache/arrow/archive/apache-arrow-8.0.1.tar.gz"
sha256: "e4c86329be769f2c8778aacc8d6220a9a13c90d59d4988f9349d51299dacbd11"
"8.0.0":
url: "https://github.com/apache/arrow/archive/apache-arrow-8.0.0.tar.gz"
sha256: "19ece12de48e51ce4287d2dee00dc358fbc5ff02f41629d16076f77b8579e272"
"7.0.0":
url: "https://github.com/apache/arrow/archive/apache-arrow-7.0.0.tar.gz"
sha256: "57e13c62f27b710e1de54fd30faed612aefa22aa41fa2c0c3bacd204dd18a8f3"
Expand All @@ -31,17 +37,39 @@ sources:
url: "https://github.com/apache/arrow/archive/apache-arrow-1.0.0.tar.gz"
sha256: "08fbd4c633c08939850d619ca0224c75d7a0526467c721c0838b8aa7efccb270"
patches:
"8.0.1":
- base_path: "source_subfolder"
patch_file: "patches/8.0.0-0001-cmake.patch"
- base_path: "source_subfolder"
patch_file: "patches/8.0.0-0002-jemalloc.patch"
- base_path: "source_subfolder"
patch_file: "patches/8.0.0-0003-mallctl-takes-size_t.patch"
- base_path: "source_subfolder"
patch_file: "patches/8.0.0-0004-use-find-package.patch"
- base_path: "source_subfolder"
patch_file: "patches/8.0.0-0005-install-utils.patch"
"8.0.0":
- base_path: "source_subfolder"
patch_file: "patches/8.0.0-0001-cmake.patch"
- base_path: "source_subfolder"
patch_file: "patches/8.0.0-0002-jemalloc.patch"
- base_path: "source_subfolder"
patch_file: "patches/8.0.0-0003-mallctl-takes-size_t.patch"
- base_path: "source_subfolder"
patch_file: "patches/8.0.0-0004-use-find-package.patch"
- base_path: "source_subfolder"
patch_file: "patches/8.0.0-0005-install-utils.patch"
"7.0.0":
- base_path: "source_subfolder"
patch_file: "patches/7.0.0-0001-cmake.patch"
- base_path: "source_subfolder"
patch_file: "patches/7.0.0-0002-jemalloc.patch"
- base_path: "source_subfolder"
patch_file: "patches/7.0.0-0003-mallctl-takes-size_t.patch"
- base_path: "source_subfolder"
patch_file: "patches/7.0.0-0004-remove-find-modules.patch"
- base_path: "source_subfolder"
patch_file: "patches/7.0.0-0005-use-find-package.patch"
- base_path: "source_subfolder"
patch_file: "patches/7.0.0-0006-install-utils.patch"
"2.0.0":
- base_path: "source_subfolder"
patch_file: "patches/2.0.0-0001-cmake.patch"
Expand Down
161 changes: 125 additions & 36 deletions ci/conan/all/conanfile.py

Large diffs are not rendered by default.

Loading