You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2022/05/06 22:34:03 UTC

[arrow] branch master updated (d9d7894660 -> 3a646b35b2)

This is an automated email from the ASF dual-hosted git repository.

kou pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


    from d9d7894660 [Release] Update .deb/.rpm changelogs for 8.0.0
     add 3a646b35b2 ARROW-16228: [CI][Packaging][Conan] Add a job to test minimum build

No new revisions were added by this update.

Summary of changes:
 .env                                               |  12 +-
 LICENSE.txt                                        |  24 +
 {cpp/src/plasma => ci/conan}/.gitignore            |   2 +-
 ci/conan/all/CMakeLists.txt                        |  29 +
 ci/conan/all/conandata.yml                         |  68 +++
 ci/conan/all/conanfile.py                          | 584 +++++++++++++++++++++
 ci/conan/all/patches/1.0.0-0001-cmake.patch        | 114 ++++
 ci/conan/all/patches/1.0.0-0002-jemalloc.patch     |  65 +++
 .../all/patches/1.0.0-0003-fix-shared-msvc.patch   |  35 ++
 .../patches/1.0.0-0004-mallctl-takes-size_t.patch  |  33 ++
 ci/conan/all/patches/2.0.0-0001-cmake.patch        |  41 ++
 ci/conan/all/patches/2.0.0-0002-jemalloc.patch     |  65 +++
 .../all/patches/2.0.0-0003-fix-shared-msvc.patch   |  35 ++
 .../all/patches/2.0.0-0005-gandiva-engine.patch    |  35 ++
 .../all/patches/2.0.0-0006-gandiva-llvm-re2.patch  | 100 ++++
 .../all/patches/2.0.0-0007-fix-protoc-cmake.patch  |  33 ++
 ci/conan/all/patches/7.0.0-0001-cmake.patch        |  35 ++
 ci/conan/all/patches/7.0.0-0002-jemalloc.patch     |  48 ++
 .../patches/7.0.0-0003-mallctl-takes-size_t.patch  |  35 ++
 .../patches/7.0.0-0004-remove-find-modules.patch   | 511 ++++++++++++++++++
 .../all/patches/7.0.0-0005-use-find-package.patch  | 343 ++++++++++++
 ci/conan/all/test_package/CMakeLists.txt           |  34 ++
 ci/conan/all/test_package/conanfile.py             |  39 ++
 .../conan/all/test_package/test_package.cpp        | 151 +++---
 ci/conan/config.yml                                |  29 +
 .../scripts/conan_build.sh                         |  35 +-
 .../{msys2_system_upgrade.sh => conan_setup.sh}    |   9 +-
 dev/tasks/tasks.yml                                |  16 +-
 docker-compose.yml                                 |  22 +-
 29 files changed, 2469 insertions(+), 113 deletions(-)
 copy {cpp/src/plasma => ci/conan}/.gitignore (96%)
 create mode 100644 ci/conan/all/CMakeLists.txt
 create mode 100644 ci/conan/all/conandata.yml
 create mode 100644 ci/conan/all/conanfile.py
 create mode 100644 ci/conan/all/patches/1.0.0-0001-cmake.patch
 create mode 100644 ci/conan/all/patches/1.0.0-0002-jemalloc.patch
 create mode 100644 ci/conan/all/patches/1.0.0-0003-fix-shared-msvc.patch
 create mode 100644 ci/conan/all/patches/1.0.0-0004-mallctl-takes-size_t.patch
 create mode 100644 ci/conan/all/patches/2.0.0-0001-cmake.patch
 create mode 100644 ci/conan/all/patches/2.0.0-0002-jemalloc.patch
 create mode 100644 ci/conan/all/patches/2.0.0-0003-fix-shared-msvc.patch
 create mode 100644 ci/conan/all/patches/2.0.0-0005-gandiva-engine.patch
 create mode 100644 ci/conan/all/patches/2.0.0-0006-gandiva-llvm-re2.patch
 create mode 100644 ci/conan/all/patches/2.0.0-0007-fix-protoc-cmake.patch
 create mode 100644 ci/conan/all/patches/7.0.0-0001-cmake.patch
 create mode 100644 ci/conan/all/patches/7.0.0-0002-jemalloc.patch
 create mode 100644 ci/conan/all/patches/7.0.0-0003-mallctl-takes-size_t.patch
 create mode 100644 ci/conan/all/patches/7.0.0-0004-remove-find-modules.patch
 create mode 100644 ci/conan/all/patches/7.0.0-0005-use-find-package.patch
 create mode 100644 ci/conan/all/test_package/CMakeLists.txt
 create mode 100644 ci/conan/all/test_package/conanfile.py
 copy cpp/examples/arrow/row_wise_conversion_example.cc => ci/conan/all/test_package/test_package.cpp (56%)
 create mode 100644 ci/conan/config.yml
 copy dev/release/04-binary-download.sh => ci/scripts/conan_build.sh (57%)
 copy ci/scripts/{msys2_system_upgrade.sh => conan_setup.sh} (87%)