Skip to content

Commit

Permalink
setup-miniconda: Speed up conda install
Browse files Browse the repository at this point in the history
Specify the channels only where needed (they don't need to be searched
for conda-libmamba-solver).
  • Loading branch information
victorlin committed Jan 12, 2023
1 parent eb06745 commit d767f60
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/actions/setup-integration-tests/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ runs:
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ inputs.python-version }}
channels: conda-forge,bioconda
activate-environment: test

- run: |
Expand All @@ -43,7 +42,7 @@ runs:

# Install software for the "ambient" runner; not supported on Windows.
- if: runner.os != 'Windows'
run: conda install augur auspice snakemake
run: conda install -c bioconda -c conda-forge augur auspice snakemake
shell: bash -l -eo pipefail {0}

- run: conda info
Expand Down

0 comments on commit d767f60

Please sign in to comment.