Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,11 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
DOCKER_CACHE: ${{ needs.build-info.outputs.cache-directive }}
IMAGE_TAG: ${{ env.IMAGE_TAG_FOR_THE_BUILD }}
PYTHON_VERSIONS: ${{ needs.build-info.outputs.all-python-versions-list-as-string }}
- name: "Show dependencies to be upgraded"
run: >
breeze release-management generate-constraints
--airflow-constraints-mode constraints-source-providers
if: needs.build-info.outputs.upgrade-to-newer-dependencies != 'false'
- name: Push empty CI image ${{ env.PYTHON_MAJOR_MINOR_VERSION }}:${{ env.IMAGE_TAG_FOR_THE_BUILD }}
if: failure() || cancelled()
run: breeze ci-image build --push --empty-image --run-in-parallel
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,11 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
PYTHON_VERSIONS: ${{ needs.build-info.outputs.all-python-versions-list-as-string }}
DEBUG_RESOURCES: ${{ needs.build-info.outputs.debug-resources }}
if: needs.build-info.outputs.in-workflow-build == 'true'
- name: "Show dependencies to be upgraded"
run: >
breeze release-management generate-constraints
--airflow-constraints-mode constraints-source-providers
if: needs.build-info.outputs.upgrade-to-newer-dependencies != 'false'
- name: "Candidates for pip resolver backtrack triggers"
if: failure() || cancelled()
run: >
Expand Down