Skip to content

Commit 94d5376

Browse files
Use debugging arguments for conda index
Since conda index terminates with error during "create conda channel" step of "test_windows", use "--verbose --threads=1" options suggested on https://github.com/conda/conda-index
1 parent 486fa46 commit 94d5376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/conda-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ jobs:
207207
echo %CONDA_PREFIX%
208208
mkdir ${{ env.workdir }}\channel\win-64
209209
move ${{ env.PACKAGE_NAME }}-*.tar.bz2 ${{ env.workdir }}\channel\win-64
210-
conda index ${{ env.workdir }}\channel
210+
conda index --verbose --threads=1 ${{ env.workdir }}\channel
211211
dir ${{ env.workdir }}\channel\win-64
212212
# Test channel
213213
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json

0 commit comments

Comments
 (0)