From 46dc817e183e351c1251f3cb734876711dca12de Mon Sep 17 00:00:00 2001 From: Jed Cunningham Date: Tue, 28 Jun 2022 14:48:51 -0600 Subject: [PATCH] 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 39c758a23d24f..80ef99f54ba04 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'