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 2022/08/21 12:58:28 UTC

[airflow] branch main updated (e1ace8d018 -> 87d051144b)

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

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


    from e1ace8d018 Fix RDS system test (#25839)
     add 87d051144b Separate instruction to install OS dependencies in images (#25565)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build-images.yml                 |   7 -
 .github/workflows/ci.yml                           |   8 -
 Dockerfile                                         | 228 ++++++-------
 Dockerfile.ci                                      | 252 ++++++---------
 IMAGES.rst                                         |  40 +--
 README.md                                          |  15 +-
 breeze-legacy                                      |   8 +-
 .../airflow_breeze/commands/ci_image_commands.py   |  13 -
 .../commands/ci_image_commands_config.py           |   6 -
 .../airflow_breeze/commands/developer_commands.py  |   4 -
 .../commands/developer_commands_config.py          |   1 -
 .../commands/production_image_commands.py          |   2 -
 .../commands/production_image_commands_config.py   |   1 -
 dev/breeze/src/airflow_breeze/global_constants.py  |  11 +-
 .../src/airflow_breeze/params/build_ci_params.py   |   8 +-
 .../src/airflow_breeze/params/build_prod_params.py |   7 +-
 .../airflow_breeze/params/common_build_params.py   |   8 +-
 .../src/airflow_breeze/params/shell_params.py      |   9 +-
 .../src/airflow_breeze/utils/common_options.py     |   9 -
 .../airflow_breeze/utils/docker_command_utils.py   |   1 -
 docker_tests/test_ci_image.py                      |  11 +-
 docs/docker-stack/build-arg-ref.rst                |  16 +-
 docs/docker-stack/build.rst                        |  11 -
 docs/docker-stack/changelog.rst                    |  12 +-
 .../customizing/add-build-essential-custom.sh      |   3 +-
 .../docker-examples/customizing/custom-sources.sh  |   3 +-
 .../customizing/github-different-repository.sh     |   3 +-
 .../docker-examples/customizing/github-main.sh     |   3 +-
 .../customizing/github-v2-2-test.sh                |   3 +-
 .../customizing/pypi-dev-runtime-deps.sh           |   3 +-
 .../customizing/pypi-extras-and-deps.sh            |   3 +-
 .../restricted/restricted_environments.sh          |   3 +-
 images/breeze/output-commands-hash.txt             |   6 +-
 images/breeze/output_ci-image_build.svg            | 296 ++++++++---------
 images/breeze/output_prod-image_build.svg          | 360 ++++++++++-----------
 images/breeze/output_shell.svg                     | 224 +++++++------
 scripts/ci/docker-compose/_docker.env              |   1 -
 scripts/ci/docker-compose/backend-mssql-buster.yml |  60 ----
 ...ackend-mssql-bullseye.yml => backend-mssql.yml} |   0
 scripts/ci/docker-compose/base.yml                 |   1 -
 scripts/ci/libraries/_docker_engine_resources.sh   |   4 +-
 scripts/ci/libraries/_initialization.sh            |   4 +-
 scripts/ci/libraries/_testing.sh                   |   2 +-
 .../determine_debian_version_specific_variables.sh |  49 ---
 scripts/docker/install_mssql.sh                    |  15 +-
 scripts/docker/install_os_dependencies.sh          |  98 ++++++
 tests/charts/helm_template_generator.py            |   2 +-
 47 files changed, 790 insertions(+), 1044 deletions(-)
 delete mode 100644 scripts/ci/docker-compose/backend-mssql-buster.yml
 rename scripts/ci/docker-compose/{backend-mssql-bullseye.yml => backend-mssql.yml} (100%)
 delete mode 100644 scripts/docker/determine_debian_version_specific_variables.sh
 create mode 100644 scripts/docker/install_os_dependencies.sh