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/07/29 13:19:59 UTC

[airflow] branch main updated: Add missing option when pushing latest images to cache :( (#25399)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new c96cf45a44 Add missing option when pushing latest images to cache :( (#25399)
c96cf45a44 is described below

commit c96cf45a44fa8b5b1f138dc8e7da06f19718b58f
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Fri Jul 29 15:19:48 2022 +0200

    Add missing option when pushing latest images to cache :( (#25399)
    
    The #25380 re-introduced pushing image as latest on main success
    and (as unfortunately happens) since this is only testable after
    merge, a small bug crippled in making main build fail.
    
    This flag should fix the problem.
---
 .github/workflows/ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 661b16b30a..d8c425143a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1765,7 +1765,7 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
         if: needs.build-info.outputs.default-branch == 'main'
       - name: "Push PROD latest image ${{ matrix.platform }}"
         run: >
-          breeze build-prod-image --tag-as-latest
+          breeze build-prod-image --tag-as-latest --install-packages-from-context
           --push-image --run-in-parallel --platform ${{ matrix.platform }}
         if: matrix.platform == 'linux/amd64'
       - name: "Stop ARM instance"