Skip to content

Commit 736811d

Browse files
committed
add libmamba
1 parent 74b1779 commit 736811d

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/workflows/conda.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,21 @@ jobs:
2828
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
2929
shell: bash -l {0}
3030
run: |
31-
conda install -c conda-forge conda-build anaconda-client conda-verify -y
32-
conda install -c conda-forge -c loop3d --file requirements.txt -y
33-
conda build -c anaconda -c conda-forge -c loop3d --output-folder conda conda --python ${{ matrix.python-version }}
34-
anaconda upload --label main conda/*/*.tar.bz2
31+
32+
conda update -n base -c defaults conda -y
33+
conda install -n base conda-libmamba-solver -y
34+
conda config --set solver libmamba
35+
36+
37+
conda install -c conda-forge conda-build anaconda-client conda-verify -y
38+
conda install -c conda-forge -c loop3d --file requirements.txt -y
39+
40+
41+
conda build -c anaconda -c conda-forge -c loop3d --output-folder conda conda --python ${{ matrix.python-version }}
42+
43+
44+
anaconda upload --label main conda/*/*.tar.bz2
45+
3546
3647
- name: upload artifacts
3748
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)