This is an automated email from the ASF dual-hosted git repository.
kszucs pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.
from aa27b4c ARROW-11766: [R] Better handling for missing compression
codecs on Linux
add f3d2d2d ARROW-12263: [Dev][Packaging] Move Crossbow to Archery
No new revisions were added by this update.
Summary of changes:
.github/workflows/archery.yml | 5 +-
dev/archery/archery/bot.py | 230 ++----
dev/archery/archery/cli.py | 18 +
.../archery/archery/crossbow/__init__.py | 4 +-
dev/archery/archery/crossbow/cli.py | 352 +++++++++
.../archery/crossbow/core.py} | 870 +++++----------------
dev/archery/archery/crossbow/reports.py | 302 +++++++
.../tests/fixtures/crossbow-job.yaml | 0
.../tests/fixtures/crossbow-success-message.md | 0
.../archery/archery/crossbow/tests/test_core.py | 13 +-
.../archery/crossbow/tests/test_crossbow_cli.py | 36 +-
.../archery/archery/crossbow/tests/test_reports.py | 37 +-
dev/archery/archery/tests/test_bot.py | 55 +-
dev/archery/archery/utils/crossbow.py | 23 -
dev/archery/conftest.py | 70 ++
dev/archery/setup.py | 8 +-
dev/release/rat_exclude_files.txt | 1 +
dev/tasks/conda-recipes/azure.linux.yml | 37 +-
dev/tasks/conda-recipes/azure.osx.yml | 42 +-
dev/tasks/conda-recipes/azure.win.yml | 42 +-
dev/tasks/conda-recipes/drone-steps.sh | 6 +-
dev/tasks/docker-tests/azure.linux.yml | 8 +-
dev/tasks/docker-tests/github.linux.yml | 34 +-
dev/tasks/gandiva-jars/github.linux.yml | 29 +-
dev/tasks/gandiva-jars/github.osx.yml | 34 +-
dev/tasks/linux-packages/github.linux.amd64.yml | 48 +-
dev/tasks/linux-packages/travis.linux.arm64.yml | 21 +-
dev/tasks/macros.jinja | 198 +++++
dev/tasks/nightlies.sample.yml | 27 +-
dev/tasks/nuget-packages/github.linux.yml | 60 +-
dev/tasks/python-sdist/github.yml | 56 +-
dev/tasks/python-wheels/github.linux.amd64.yml | 75 +-
dev/tasks/python-wheels/github.osx.yml | 44 +-
dev/tasks/python-wheels/github.windows.yml | 68 +-
dev/tasks/python-wheels/travis.linux.arm64.yml | 33 +-
dev/tasks/requirements-crossbow.txt | 7 -
dev/tasks/tasks.yml | 527 ++-----------
dev/tasks/verify-rc/github.linux.yml | 29 +-
.../verify-rc/{github.osx.yml => github.macos.yml} | 29 +-
dev/tasks/verify-rc/github.win.yml | 29 +-
docs/source/developers/crossbow.rst | 42 +-
41 files changed, 1479 insertions(+), 2070 deletions(-)
copy python/pyarrow/json.py => dev/archery/archery/crossbow/__init__.py (86%)
create mode 100644 dev/archery/archery/crossbow/cli.py
rename dev/{tasks/crossbow.py => archery/archery/crossbow/core.py} (57%)
mode change 100755 => 100644
create mode 100644 dev/archery/archery/crossbow/reports.py
rename dev/archery/archery/{ => crossbow}/tests/fixtures/crossbow-job.yaml
(100%)
rename dev/archery/archery/{ =>
crossbow}/tests/fixtures/crossbow-success-message.md (100%)
copy ci/scripts/csharp_build.sh =>
dev/archery/archery/crossbow/tests/test_core.py (78%)
mode change 100755 => 100644
copy python/pyarrow/tests/test_adhoc_memory_leak.py =>
dev/archery/archery/crossbow/tests/test_crossbow_cli.py (51%)
copy c_glib/test/test-map-data-type.rb =>
dev/archery/archery/crossbow/tests/test_reports.py (56%)
delete mode 100644 dev/archery/archery/utils/crossbow.py
create mode 100644 dev/archery/conftest.py
create mode 100644 dev/tasks/macros.jinja
delete mode 100644 dev/tasks/requirements-crossbow.txt
rename dev/tasks/verify-rc/{github.osx.yml => github.macos.yml} (68%)