You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2020/03/12 17:52:15 UTC

[arrow] branch master updated (29e1e47 -> 7fede00)

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 29e1e47  ARROW-8036: [C++] Avoid gtest 1.10 deprecation warnings
     add 7fede00  ARROW-8064: [Dev] Implement Comment bot via Github actions

No new revisions were added by this update.

Summary of changes:
 .dockerignore                                      |   1 +
 .../workflows/archery.yml                          |  53 ++-
 .github/workflows/comment_bot.yml                  |  62 +++
 LICENSE.txt                                        |  30 ++
 ...conda_env_gandiva.yml => conda_env_archery.yml} |   6 +-
 ci/docker/conda-integration.dockerfile             |   2 +
 ci/docker/linux-apt-lint.dockerfile                |   8 +-
 dev/archery/archery/bot.py                         | 286 +++++++++++++
 dev/archery/archery/cli.py                         |  16 +
 dev/archery/archery/lang/python.py                 |   1 -
 .../archery-benchmark-diff-empty-lines.jsonl       |   6 +
 .../tests/fixtures/archery-benchmark-diff.jsonl    |   4 +
 .../archery/tests/fixtures/crossbow-job.yaml       |  51 +++
 .../tests/fixtures/crossbow-success-message.md     |  10 +
 .../event-issue-comment-build-command.json         | 212 ++++++++++
 ...event-issue-comment-by-non-authorized-user.json | 212 ++++++++++
 .../fixtures/event-issue-comment-by-ursabot.json   | 212 ++++++++++
 ...event-issue-comment-not-mentioning-ursabot.json | 212 ++++++++++
 .../event-issue-comment-with-empty-command.json    | 217 ++++++++++
 .../event-issue-comment-without-pull-request.json  | 206 ++++++++++
 .../tests/fixtures/event-pull-request-opened.json  | 445 +++++++++++++++++++++
 dev/archery/archery/tests/fixtures/issue-19.json   |  64 +++
 dev/archery/archery/tests/fixtures/issue-26.json   |  70 ++++
 .../tests/fixtures/issue-comment-480243811.json    |  31 ++
 .../tests/fixtures/issue-comment-480248726.json    |  31 ++
 .../tests/fixtures/pull-request-26-commit.json     | 158 ++++++++
 .../tests/fixtures/pull-request-26-files.json      | 170 ++++++++
 .../archery/tests/fixtures/pull-request-26.json    | 329 +++++++++++++++
 dev/archery/archery/tests/test_bot.py              | 242 +++++++++++
 .../archery/archery/utils/crossbow.py              |  11 +-
 dev/archery/requirements-lint.txt                  |   2 +
 dev/archery/requirements.txt                       |   3 +
 dev/archery/setup.py                               |   2 +-
 dev/release/rat_exclude_files.txt                  |   2 +
 34 files changed, 3333 insertions(+), 34 deletions(-)
 copy ruby/red-arrow/lib/arrow/field-containable.rb => .github/workflows/archery.yml (53%)
 create mode 100644 .github/workflows/comment_bot.yml
 copy ci/{conda_env_gandiva.yml => conda_env_archery.yml} (96%)
 create mode 100644 dev/archery/archery/bot.py
 create mode 100644 dev/archery/archery/tests/fixtures/archery-benchmark-diff-empty-lines.jsonl
 create mode 100644 dev/archery/archery/tests/fixtures/archery-benchmark-diff.jsonl
 create mode 100644 dev/archery/archery/tests/fixtures/crossbow-job.yaml
 create mode 100644 dev/archery/archery/tests/fixtures/crossbow-success-message.md
 create mode 100644 dev/archery/archery/tests/fixtures/event-issue-comment-build-command.json
 create mode 100644 dev/archery/archery/tests/fixtures/event-issue-comment-by-non-authorized-user.json
 create mode 100644 dev/archery/archery/tests/fixtures/event-issue-comment-by-ursabot.json
 create mode 100644 dev/archery/archery/tests/fixtures/event-issue-comment-not-mentioning-ursabot.json
 create mode 100644 dev/archery/archery/tests/fixtures/event-issue-comment-with-empty-command.json
 create mode 100644 dev/archery/archery/tests/fixtures/event-issue-comment-without-pull-request.json
 create mode 100644 dev/archery/archery/tests/fixtures/event-pull-request-opened.json
 create mode 100644 dev/archery/archery/tests/fixtures/issue-19.json
 create mode 100644 dev/archery/archery/tests/fixtures/issue-26.json
 create mode 100644 dev/archery/archery/tests/fixtures/issue-comment-480243811.json
 create mode 100644 dev/archery/archery/tests/fixtures/issue-comment-480248726.json
 create mode 100644 dev/archery/archery/tests/fixtures/pull-request-26-commit.json
 create mode 100644 dev/archery/archery/tests/fixtures/pull-request-26-files.json
 create mode 100644 dev/archery/archery/tests/fixtures/pull-request-26.json
 create mode 100644 dev/archery/archery/tests/test_bot.py
 copy ci/scripts/csharp_test.sh => dev/archery/archery/utils/crossbow.py (80%)
 mode change 100755 => 100644
 create mode 100644 dev/archery/requirements-lint.txt
 create mode 100644 dev/archery/requirements.txt