Skip to content

Commit 7cc6b84

Browse files
committed
Need conda-build installed to use conda index.
1 parent ad60382 commit 7cc6b84

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

repo_helper/templates/github_conda_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
python -m pip install --upgrade repo_helper
3030
# $CONDA is an environment variable pointing to the root of the miniconda directory
3131
$CONDA/bin/conda update -q conda
32+
$CONDA/bin/conda install conda-build
3233
{% for channel in conda_channels %}
33-
$CONDA/bin/conda config --add channels {{ channel }}
34-
{% endfor %}
34+
$CONDA/bin/conda config --add channels {{ channel }}{% endfor %}
3535
3636
- name: "Build and install package"
3737
run: |

tests/test_files/test_ci_cd_/test_make_conda_actions_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
python -m pip install --upgrade repo_helper
3030
# $CONDA is an environment variable pointing to the root of the miniconda directory
3131
$CONDA/bin/conda update -q conda
32+
$CONDA/bin/conda install conda-build
3233
3334
$CONDA/bin/conda config --add channels conda-forge
3435
35-
3636
- name: "Build and install package"
3737
run: |
3838
# This mess is only necessary because conda won't fix it themselves

0 commit comments

Comments
 (0)