Skip to content

Commit

Permalink
Try with conda instead of mamba
Browse files Browse the repository at this point in the history
  • Loading branch information
csoneson committed Feb 18, 2023
1 parent d33a042 commit 76d9631
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/snakemake-run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,17 @@ jobs:
- name: Install snakemake (Linux)
if: runner.os == 'Linux'
run: |
conda install -c conda-forge mamba=0.23.3
rm -f /usr/share/miniconda/pkgs/cache/*.json # workaround from mamba-org/mamba#488
mamba install -c bioconda snakemake=6.10.0
#conda install -c conda-forge mamba=0.23.3
#rm -f /usr/share/miniconda/pkgs/cache/*.json # workaround from mamba-org/mamba#488
#mamba install -c bioconda snakemake=6.10.0
conda install -c bioconda snakemake=6.10.0
- name: Install snakemake (macOS)
if: runner.os == 'macOS'
run: |
conda install -c conda-forge mamba=0.23.3
mamba install -c bioconda snakemake=6.10.0
#conda install -c conda-forge mamba=0.23.3
#mamba install -c bioconda snakemake=6.10.0
conda install -c bioconda snakemake=6.10.0
- name: Run workflow
env:
Expand Down

0 comments on commit 76d9631

Please sign in to comment.