fix(ci): remove broken pyficache branch install step#83
Open
circleci-app[bot] wants to merge 1 commit intopython-3.6-to-3.10from
Open
fix(ci): remove broken pyficache branch install step#83circleci-app[bot] wants to merge 1 commit intopython-3.6-to-3.10from
circleci-app[bot] wants to merge 1 commit intopython-3.6-to-3.10from
Conversation
**Root cause:** The CI pipeline installs `pyficache` from the `python-3.6-to-3.10` branch of `python-filecache`, but that branch fails to build its wheel requirements (`Getting requirements to build wheel did not run successfully`). This caused the pipeline to abort before any tests ran. **Fix approach:** Remove the redundant failing install step. The same `pyficache` package is already installed from the default branch on the very next step (`pip install --local -e git+https://github.com/rocky/python-filecache.git#egg=pyficache`), making the branch-specific install unnecessary. **Changes made:** - Removed the failing `pip install --local -e git+https://github.com/rocky/python-filecache.git@python-3.6-to-3.10#egg=pyficache` step from `.circleci/config.yml`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Prompt Given
Fix job failure for job 1211
Root cause: The CI pipeline installs
pyficachefrom thepython-3.6-to-3.10branch ofpython-filecache, but that branch fails to build its wheel requirements (Getting requirements to build wheel did not run successfully). This caused the pipeline to abort before any tests ran.Fix approach: Remove the redundant failing install step. The same
pyficachepackage is already installed from the default branch on the very next step (pip install --local -e git+https://github.com/rocky/python-filecache.git#egg=pyficache), making the branch-specific install unnecessary.Changes made:
pip install --local -e git+https://github.com/rocky/python-filecache.git@python-3.6-to-3.10#egg=pyficachestep from.circleci/config.ymlOriginal failing job
View more about this proposed fix in the CircleCI web app →