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/09/26 00:31:00 UTC

[airflow] branch remove-compile-www-assets-in-ci-image created (now fa29c51b47)

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

potiuk pushed a change to branch remove-compile-www-assets-in-ci-image
in repository https://gitbox.apache.org/repos/asf/airflow.git


      at fa29c51b47 Remove asset compilation for CI image builds

This branch includes the following new commits:

     new fa29c51b47 Remove asset compilation for CI image builds

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[airflow] 01/01: Remove asset compilation for CI image builds

Posted by po...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch remove-compile-www-assets-in-ci-image
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit fa29c51b4731140e465e09658b466582ad7e1074
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Mon Sep 26 02:29:35 2022 +0200

    Remove asset compilation for CI image builds
    
    The asset compilation is not actually used in CI image so it is not
    really needed to be run in CI.
---
 .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 341c7c3c46..46a7e11e32 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -393,9 +393,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 }}