-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GH-34296: [C++][CI] Force appveyor builds to use conda-forge and ignore defaults channel #34297
GH-34296: [C++][CI] Force appveyor builds to use conda-forge and ignore defaults channel #34297
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting, I do remember a user issue where solving took forever with -c conda-forge.
Should probably be mentioned in the docs?
Benchmark runs are scheduled for baseline = 7f58c1a and contender = e0e740b. e0e740b is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
…d ignore defaults channel (apache#34297) For some reason (potentially related to mamba-org/mamba#656 or maybe just the default conda behavior) it appears that specifying `-c conda-forge` is not sufficient as conda will still check the defaults channel. Lately it seems the defaults channel has introduced some incompatibility that leads to a deadlock or hang during solve. This PR disables defaults completely which seems to avoid the hang. * Closes: apache#34296 Authored-by: Weston Pace <weston.pace@gmail.com> Signed-off-by: Jacob Wujciak-Jens <jacob@wujciak.de>
For some reason (potentially related to mamba-org/mamba#656 or maybe just the default conda behavior) it appears that specifying
-c conda-forge
is not sufficient as conda will still check the defaults channel.Lately it seems the defaults channel has introduced some incompatibility that leads to a deadlock or hang during solve.
This PR disables defaults completely which seems to avoid the hang.