You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ep...@apache.org on 2022/10/18 15:08:40 UTC

[airflow] 05/13: Actually run the "quick image build" (#26351)

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

ephraimanierobi pushed a commit to branch v2-4-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 26d136cec9bd6108cfaea03ed69939d0c9c9346b
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Wed Sep 14 14:38:18 2022 +0200

    Actually run the "quick image build" (#26351)
    
    The check does not use matrix build but we left the check for
    matrix so the check was always skipped.
    
    (cherry picked from commit c89e92f63aca7b1b008604883ce08c0ce032c80b)
---
 .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 742583271c..d8849e2c4f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -339,7 +339,7 @@ jobs:
         if: needs.build-info.outputs.canary-run == 'true'
       - name: "Check that image builds quickly"
         run: breeze shell --max-time 120
-        if: matrix.platform == 'linux/amd64' && needs.build-info.outputs.canary-run == 'true'
+        if: needs.build-info.outputs.canary-run == 'true'
       - name: "Fix ownership"
         run: breeze ci fix-ownership
         if: always() && needs.build-info.outputs.canary-run == 'true'