You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/08/20 07:58:07 UTC

[airflow] branch master updated (5739ba2 -> de7500d)

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

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


    from 5739ba2  Fix broken breeze script (#10418)
     add de7500d  CI Images are now pre-build and stored in registry (#10368)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build-images-workflow-run.yml    | 228 ++++++++
 .github/workflows/cancel_other_workflow_runs.yml   |  36 --
 .github/workflows/ci.yml                           | 632 +++++++++++++--------
 ...{quarantined.yaml => scheduled_quarantined.yml} |  18 +-
 .pre-commit-config.yaml                            |   2 +-
 BREEZE.rst                                         |  29 +-
 STATIC_CODE_CHECKS.rst                             |  28 +-
 breeze                                             |  14 +-
 breeze-complete                                    |   4 +-
 common/_common_values.sh                           |  19 -
 common/_default_branch.sh                          |  20 -
 common/_files_for_rebuild_check.sh                 |  30 -
 common/_image_variables.sh                         |  31 -
 scripts/ci/docker-compose/base.yml                 |   1 +
 scripts/ci/docker-compose/local.yml                |   1 -
 scripts/ci/docs/ci_docs.sh                         |   7 -
 scripts/ci/images/ci_build_dockerhub.sh            |   4 +-
 scripts/ci/images/ci_prepare_ci_image_on_ci.sh     |  33 ++
 scripts/ci/images/ci_prepare_prod_image_on_ci.sh   |  32 +-
 .../{ci_push_ci_image.sh => ci_push_ci_images.sh}  |   2 +-
 .../ci_wait_for_all_ci_images.sh}                  |  44 +-
 .../ci_wait_for_all_prod_images.sh}                |  44 +-
 scripts/ci/in_container/_in_container_utils.sh     |   6 +-
 scripts/ci/in_container/entrypoint_ci.sh           |   4 +-
 scripts/ci/in_container/run_docs_build.sh          |   2 +-
 scripts/ci/in_container/run_system_tests.sh        |   6 +-
 .../ci/kubernetes/ci_deploy_app_to_kubernetes.sh   |   2 +-
 scripts/ci/libraries/_build_images.sh              | 187 +++---
 scripts/ci/libraries/_initialization.sh            | 542 +++++++++++-------
 scripts/ci/libraries/_kind.sh                      |   2 +-
 scripts/ci/libraries/_local_mounts.sh              |   1 -
 scripts/ci/libraries/_push_pull_remove_images.sh   | 195 +++++--
 scripts/ci/libraries/_runs.sh                      |   1 +
 scripts/ci/openapi/client_codegen_diff.sh          |   7 +-
 scripts/ci/pre_commit/pre_commit_bat_tests.sh      |   4 +-
 .../ci/pre_commit/pre_commit_breeze_cmd_line.sh    |   1 -
 .../pre_commit_build_providers_dependencies.sh     |   1 -
 .../ci/pre_commit/pre_commit_check_integrations.sh |   4 +-
 scripts/ci/pre_commit/pre_commit_check_license.sh  |   3 +-
 scripts/ci/pre_commit/pre_commit_flake8.sh         |   4 +-
 .../ci/pre_commit/pre_commit_lint_dockerfile.sh    |   4 +-
 scripts/ci/pre_commit/pre_commit_mypy.sh           |   4 +-
 scripts/ci/pre_commit/pre_commit_pylint.sh         |   4 +-
 scripts/ci/pre_commit/pre_commit_setup_cfg_file.sh |   1 -
 .../{ci_bat_tests.sh => bat_tests.sh}              |   3 +-
 .../{ci_check_license.sh => check_license.sh}      |   4 +-
 .../ci/static_checks/{ci_flake8.sh => flake8.sh}   |   0
 .../{ci_lint_dockerfile.sh => lint_dockerfile.sh}  |   0
 scripts/ci/static_checks/{ci_mypy.sh => mypy.sh}   |   0
 .../ci/static_checks/{ci_pylint.sh => pylint.sh}   |   0
 ...fresh_pylint_todo.sh => refresh_pylint_todo.sh} |   0
 ...i_run_static_checks.sh => run_static_checks.sh} |   0
 scripts/ci/testing/ci_run_airflow_testing.sh       |   2 +-
 .../ci/tools/ci_check_if_tests_should_be_run.sh    |   2 +-
 scripts/ci/tools/ci_count_changed_files.sh         |   4 +-
 .../{ => prod}/airflow_scheduler_autorestart.sh    |   0
 56 files changed, 1369 insertions(+), 890 deletions(-)
 create mode 100644 .github/workflows/build-images-workflow-run.yml
 delete mode 100644 .github/workflows/cancel_other_workflow_runs.yml
 rename .github/workflows/{quarantined.yaml => scheduled_quarantined.yml} (85%)
 delete mode 100644 common/_common_values.sh
 delete mode 100644 common/_default_branch.sh
 delete mode 100644 common/_files_for_rebuild_check.sh
 delete mode 100644 common/_image_variables.sh
 rename scripts/ci/images/{ci_push_ci_image.sh => ci_push_ci_images.sh} (98%)
 copy scripts/ci/{tools/ci_check_if_tests_should_be_run.sh => images/ci_wait_for_all_ci_images.sh} (58%)
 copy scripts/ci/{tools/ci_check_if_tests_should_be_run.sh => images/ci_wait_for_all_prod_images.sh} (54%)
 rename scripts/ci/static_checks/{ci_bat_tests.sh => bat_tests.sh} (97%)
 rename scripts/ci/static_checks/{ci_check_license.sh => check_license.sh} (93%)
 rename scripts/ci/static_checks/{ci_flake8.sh => flake8.sh} (100%)
 rename scripts/ci/static_checks/{ci_lint_dockerfile.sh => lint_dockerfile.sh} (100%)
 rename scripts/ci/static_checks/{ci_mypy.sh => mypy.sh} (100%)
 rename scripts/ci/static_checks/{ci_pylint.sh => pylint.sh} (100%)
 rename scripts/ci/static_checks/{ci_refresh_pylint_todo.sh => refresh_pylint_todo.sh} (100%)
 rename scripts/ci/static_checks/{ci_run_static_checks.sh => run_static_checks.sh} (100%)
 rename scripts/{ => prod}/airflow_scheduler_autorestart.sh (100%)