This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 1e56eb25278 Skip building CI image when change does not touch python
code (#45281)
1e56eb25278 is described below
commit 1e56eb25278a6ed6bc44faca876522dc5a3cf5b9
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon Dec 30 11:01:35 2024 +0100
Skip building CI image when change does not touch python code (#45281)
In very simple changes we should skip building ci image altogether.
This had been missing condition in one of the earlier refactors.
Follow-up after #45266
---
.github/workflows/ci.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3ee18ec1a6e..04e97f46d75 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -216,6 +216,7 @@ jobs:
constraints-branch: ${{
needs.build-info.outputs.default-constraints-branch }}
docker-cache: ${{ needs.build-info.outputs.docker-cache }}
disable-airflow-repo-cache: ${{
needs.build-info.outputs.disable-airflow-repo-cache }}
+ if: needs.build-info.outputs.ci-image-build == 'true'
additional-ci-image-checks:
name: "Additional CI image checks"