Skip to content

Commit

Permalink
Merge pull request #141 from robotology/fix-conda-ci
Browse files Browse the repository at this point in the history
Fix Conda CI on Linux avoiding to use the defaults channel
  • Loading branch information
Nicogene authored Aug 2, 2021
2 parents 01ed80e + a4b3d6c commit a62ea4e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/conda-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,18 @@ jobs:
- uses: conda-incubator/setup-miniconda@v2
with:
mamba-version: "*"
channels: conda-forge,defaults
channels: conda-forge,robotology
channel-priority: true

- name: Dependencies
shell: bash -l {0}
run: |
# Workaround for https://github.com/conda-incubator/setup-miniconda/issues/186
conda config --remove channels defaults
# Compilation related dependencies
mamba install cmake compilers make ninja pkg-config
# Actual dependencies
mamba install -c robotology yarp matio-cpp boost-cpp
mamba install yarp matio-cpp boost-cpp
- name: Configure [Linux&macOS]
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')
Expand Down

0 comments on commit a62ea4e

Please sign in to comment.