You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by je...@apache.org on 2022/06/28 20:50:06 UTC

[airflow] 01/01: Fix CI image build

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

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

commit 46dc817e183e351c1251f3cb734876711dca12de
Author: Jed Cunningham <je...@apache.org>
AuthorDate: Tue Jun 28 14:48:51 2022 -0600

    Fix CI image build
    
    We missed the matrix when adding ARM image builds in the CI process.
---
 .github/workflows/build-images.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml
index 39c758a23d..80ef99f54b 100644
--- a/.github/workflows/build-images.yml
+++ b/.github/workflows/build-images.yml
@@ -161,6 +161,9 @@ jobs:
     name: "Build CI images ${{ needs.build-info.outputs.allPythonVersionsListAsString }}"
     runs-on: ${{ fromJson(needs.build-info.outputs.runsOn) }}
     needs: [build-info]
+    strategy:
+      matrix:
+        platform: ["linux/amd64", "linux/arm64"]
     if: |
       needs.build-info.outputs.image-build == 'true' &&
       github.event.pull_request.head.repo.full_name != 'apache/airflow'