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 18:02:41 UTC

[airflow] 02/06: Remove asset compilation for CI image builds (#26665)

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 be935af91e53eacbbc59536d2a2501ee733e3628
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Mon Sep 26 10:31:39 2022 +0200

    Remove asset compilation for CI image builds (#26665)
    
    The asset compilation is not actually used in CI image so it is not
    really needed to be run in CI.
    
    (cherry picked from commit df3bfe3219da340c566afc9602278e2751889c70)
---
 .github/workflows/build-images.yml | 2 --
 .github/workflows/ci.yml           | 3 ---
 2 files changed, 5 deletions(-)

diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml
index f8433ab92e..c497db74d9 100644
--- a/.github/workflows/build-images.yml
+++ b/.github/workflows/build-images.yml
@@ -227,8 +227,6 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
           breeze static-checks --type update-providers-dependencies --all-files
           --show-diff-on-failure --color always || true
         if: needs.build-info.outputs.default-branch == 'main'
-      - name: Compile www assets
-        run: breeze compile-www-assets
       - name: >-
           Build & Push AMD64 CI images ${{ env.IMAGE_TAG_FOR_THE_BUILD }}
           ${{ needs.build-info.outputs.all-python-versions-list-as-string }}
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d8849e2c4f..25957c3a79 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -392,9 +392,6 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
         if: >
           needs.build-info.outputs.in-workflow-build == 'true' &&
           needs.build-info.outputs.default-branch == 'main'
-      - name: Compile www assets
-        run: breeze compile-www-assets
-        if: needs.build-info.outputs.in-workflow-build == 'true'
       - name: >
           Build & Push CI images ${{ env.IMAGE_TAG_FOR_THE_BUILD }}
           ${{ needs.build-info.outputs.all-python-versions-list-as-string }}