Skip to content

Commit

Permalink
Add miniconda
Browse files Browse the repository at this point in the history
  • Loading branch information
mrp089 committed Feb 23, 2024
1 parent 206c806 commit b6617fc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ jobs:
cd build
cmake -DENABLE_COVERAGE=ON -DENABLE_ARRAY_INDEX_CHECKING=ON ..
make -j2
# This can be removed once the macos-14 runner also comes with miniconda installed
- name: Install Miniconda (macos-14 only)
if: startsWith(matrix.os, 'macos-14')
run: |
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O ~/miniconda.sh
bash ~/miniconda.sh -b -p $HOME/miniconda
source $HOME/miniconda/bin/activate
conda init zsh
- name: Install test dependencies
run: |
conda create -n svfsiplus python=3.9
Expand Down

0 comments on commit b6617fc

Please sign in to comment.