Skip to content

Commit 124d60b

Browse files
committed
Remove default conda channels from conda build CI
1 parent 7d058b2 commit 124d60b

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/httomolibgpu_version_tag.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,18 @@ jobs:
2929

3030
# install dependencies with conda
3131
- name: Install dependencies with conda
32+
uses: mamba-org/setup-micromamba@v2
33+
with:
34+
environment-name: httomolibgpu
35+
environment-file: ./conda/environment.yml
36+
post-cleanup: 'all'
37+
init-shell: bash
38+
39+
# install httomolibgpu
40+
- name: Install httomolibgpu
3241
run: |
33-
$CONDA/bin/conda env create --name httomolibgpu --file conda/environment.yml
34-
$CONDA/bin/conda run -n httomolibgpu pip install -e .
35-
$CONDA/bin/conda list
42+
pip install -e .
43+
micromamba list
3644
3745
- name: Decrypt a secret
3846
run: ./.scripts/decrypt_secret.sh

0 commit comments

Comments
 (0)