We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
CI jobs using conda are currently breaking like this:
conda
/Users/runner/miniforge/envs/test-env/etc/conda/activate.d/libarrow_activate.sh: line 25: CONDA_BUILD: unbound variable
Any Python-package CI jobs using conda in the last few hours. See, for example https://github.com/microsoft/LightGBM/actions/runs/12943275214/job/36157521507?pr=6668
N/A
It looks like this has happened to others in the past, guess we've just been lucky here:
It looks like this can happen when using bash with set -u and then calling source activate or similar.
bash
set -u
source activate
The text was updated successfully, but these errors were encountered:
[ci] fix conda activation issues (fixes #6799)
b4da894
Ah, think I found the root cause: conda-forge/arrow-cpp-feedstock#1694
Sorry, something went wrong.
I put up a proposed fix in conda-forge/arrow-cpp-feedstock#1696 ... let's see if that's accepted before adding workarounds like #6800
Seeing CI starting to pass across the project, so I do think that upstream fix resolved this!
Closing this and #6800
Successfully merging a pull request may close this issue.
Description
CI jobs using
conda
are currently breaking like this:Reproducible example
Any Python-package CI jobs using
conda
in the last few hours. See, for example https://github.com/microsoft/LightGBM/actions/runs/12943275214/job/36157521507?pr=6668Environment info
N/A
Additional Comments
It looks like this has happened to others in the past, guess we've just been lucky here:
It looks like this can happen when using
bash
withset -u
and then callingsource activate
or similar.The text was updated successfully, but these errors were encountered: