We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed9207d commit 7d2acaaCopy full SHA for 7d2acaa
.github/workflows/lint.yml
@@ -49,8 +49,9 @@ jobs:
49
CONDA_PATH=$(which conda)
50
eval "$(${CONDA_PATH} shell.bash hook)"
51
# clang-format needs some shared libraries that conflict with the system ones. Thus, we install them from conda
52
- # and prepend the libraries to linker path to prioritize them
53
- conda create --name ci --quiet --yes python=3.8 ncurses=5 libgcc
+ # and prepend the libraries to linker path to prioritize them. `ncurses=5` is only available on the conda-forge
+ # channel. Since we are not building or testing here, this is fine.
54
+ conda create --name ci --quiet --yes -c conda-forge python=3.8 ncurses=5 libgcc
55
conda activate ci
56
export LD_LIBRARY_PATH="${CONDA_PREFIX}/lib:${LD_LIBRARY_PATH}"
57
echo '::endgroup::'
0 commit comments