Skip to content

Commit

Permalink
Fix python version used for cache preparaation (apache#23785)
Browse files Browse the repository at this point in the history
Cache preparation on CI used default (Python 3.7) version of the
image. It had an influence on time of "full build needed" only and
for users who wanted to build breeze image for Python version
different than default Python 3.7.

It had no big influence on "main" builds" because in main we are
build images with "upgrade-to-newer-dependencies" which takes
longer anyway.
  • Loading branch information
potiuk authored May 19, 2022
1 parent 479ad19 commit 46abf37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1683,7 +1683,7 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
--prepare-buildx-cache
--platform linux/amd64,linux/arm64
env:
PYTHON_MAJOR_MINOR_VERSION: ${{ needs.build-info.outputs.defaultPythonVersion }}
PYTHON_MAJOR_MINOR_VERSION: ${{ matrix.python-version }}
- name: >
Pull CI image for PROD build
${{ env.PYTHON_MAJOR_MINOR_VERSION }}:${{ env.IMAGE_TAG_FOR_THE_BUILD }}"
Expand Down

0 comments on commit 46abf37

Please sign in to comment.