You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2022/11/15 00:00:50 UTC

[tvm] branch nightly-docker-update updated (6852420b0d -> 4ce2e82ea1)

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

github-bot pushed a change to branch nightly-docker-update
in repository https://gitbox.apache.org/repos/asf/tvm.git


    omit 6852420b0d [ci][docker] Nightly Docker image update
     add 5a767d053d [CI] Separate the ci scripts into Github and Jenkins scripts (#13368)
     add b6fae9b35e [TIR][Bugfix] Fix AXIS_SEPARATORS in tir.Schedule.transform_layout (#13326)
     add 68f51e692b [ci] Fix Jenkins quoting (#13380)
     add 41a2243260 [CI] Do not merge before running CI on main (#13372)
     add 4ce2e82ea1 [ci][docker] Nightly Docker image update

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (6852420b0d)
            \
             N -- N -- N   refs/heads/nightly-docker-update (4ce2e82ea1)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/disabled_workflows/pr_comment_bot.yml      |   4 +-
 .github/workflows/cc_bot.yml                       |   2 +-
 .github/workflows/nightly_docker_update.yml        |   2 +-
 .github/workflows/ping_reviewers.yml               |   2 +-
 .github/workflows/tag_teams.yml                    |   2 +-
 .github/workflows/tvmbot.yml                       |   2 +-
 .../workflows/update_last_successful_branch.yml    |   2 +-
 Jenkinsfile                                        | 238 ++++++-----
 ci/jenkins/Deploy.groovy.j2                        |   4 +-
 ci/jenkins/DockerBuild.groovy.j2                   |   4 +-
 ci/jenkins/Jenkinsfile.j2                          |  22 +-
 ci/jenkins/Prepare.groovy.j2                       |  60 ++-
 ci/jenkins/macros.j2                               |   4 +-
 ci/scripts/{ => github}/__init__.py                |   2 +-
 ci/scripts/{ => github}/github_cc_reviewers.py     |   4 +
 ci/scripts/{ => github}/github_commenter.py        |   6 +
 ci/scripts/{ => github}/github_docs_comment.py     |   0
 ci/scripts/{ => github}/github_pr_comment.py       |   6 +
 .../{ => github}/github_skipped_tests_comment.py   |   2 +-
 ci/scripts/{ => github}/github_tag_teams.py        |   5 +
 ci/scripts/{ => github}/github_tvmbot.py           |   5 +
 ci/scripts/{ => github}/ping_reviewers.py          |  11 +-
 ci/scripts/{ => github}/update_branch.py           |   7 +-
 ci/scripts/{ => jenkins}/check_pr.py               |   0
 ci/scripts/{ => jenkins}/cmd_utils.py              |   3 +-
 .../{ => jenkins}/determine_docker_images.py       |   3 +-
 ci/scripts/{ => jenkins}/git_change_docker.sh      |   0
 ci/scripts/{ => jenkins}/git_change_docs.sh        |   0
 ci/scripts/{ => jenkins}/git_skip_ci.py            |   0
 ci/scripts/{ => jenkins}/git_skip_ci_globs.py      |   0
 ci/scripts/{ => jenkins}/git_utils.py              |   0
 ci/scripts/{ => jenkins}/http_utils.py             |   0
 ci/scripts/{ => jenkins}/open_docker_update_pr.py  |   3 +-
 ci/scripts/{ => jenkins}/pytest_ids.py             |   0
 ci/scripts/{ => jenkins}/pytest_wrapper.py         |   3 +-
 ci/scripts/{ => jenkins}/retry.sh                  |   0
 ci/scripts/{ => jenkins}/should_rebuild_docker.py  |   0
 ci/scripts/{ => jenkins}/should_run_slow_tests.py  |   6 +-
 ci/scripts/required_tests_to_run.json              |  11 -
 docker/bash.sh                                     |   3 +-
 .../schedule/primitive/layout_transformation.cc    | 462 +++++++++++++--------
 src/tir/schedule/state.cc                          |   7 +-
 tests/python/ci/test_ci.py                         |  38 +-
 tests/python/ci/test_tvmbot.py                     |   4 +-
 tests/python/ci/test_utils.py                      |   2 +
 .../unittest/test_tir_schedule_transform_layout.py |  48 ++-
 tests/scripts/release/gather_prs.py                |   3 +-
 tests/scripts/release/make_notes.py                |   2 +
 tests/scripts/setup-pytest-env.sh                  |   2 +-
 tests/scripts/task_build.py                        |   4 +-
 tests/scripts/task_python_frontend.sh              |   2 +-
 51 files changed, 598 insertions(+), 404 deletions(-)
 rename ci/scripts/{ => github}/__init__.py (94%)
 rename ci/scripts/{ => github}/github_cc_reviewers.py (95%)
 rename ci/scripts/{ => github}/github_commenter.py (95%)
 rename ci/scripts/{ => github}/github_docs_comment.py (100%)
 rename ci/scripts/{ => github}/github_pr_comment.py (94%)
 rename ci/scripts/{ => github}/github_skipped_tests_comment.py (99%)
 rename ci/scripts/{ => github}/github_tag_teams.py (97%)
 rename ci/scripts/{ => github}/github_tvmbot.py (99%)
 rename ci/scripts/{ => github}/ping_reviewers.py (96%)
 rename ci/scripts/{ => github}/update_branch.py (96%)
 rename ci/scripts/{ => jenkins}/check_pr.py (100%)
 rename ci/scripts/{ => jenkins}/cmd_utils.py (95%)
 rename ci/scripts/{ => jenkins}/determine_docker_images.py (98%)
 rename ci/scripts/{ => jenkins}/git_change_docker.sh (100%)
 rename ci/scripts/{ => jenkins}/git_change_docs.sh (100%)
 rename ci/scripts/{ => jenkins}/git_skip_ci.py (100%)
 rename ci/scripts/{ => jenkins}/git_skip_ci_globs.py (100%)
 rename ci/scripts/{ => jenkins}/git_utils.py (100%)
 rename ci/scripts/{ => jenkins}/http_utils.py (100%)
 rename ci/scripts/{ => jenkins}/open_docker_update_pr.py (99%)
 rename ci/scripts/{ => jenkins}/pytest_ids.py (100%)
 rename ci/scripts/{ => jenkins}/pytest_wrapper.py (98%)
 rename ci/scripts/{ => jenkins}/retry.sh (100%)
 rename ci/scripts/{ => jenkins}/should_rebuild_docker.py (100%)
 rename ci/scripts/{ => jenkins}/should_run_slow_tests.py (95%)
 delete mode 100644 ci/scripts/required_tests_to_run.json