Skip to content

Commit

Permalink
#97: try fix error in macos ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tlamonthezie committed Sep 6, 2024
1 parent 91f009e commit ca054b1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build-and-test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,20 @@ jobs:
key: ${{ env.CACHE_KEY }}
save-always: true

- name: Setup Miniconda3
- name: Setup Conda
if: ${{steps.base-cache.outputs.cache-hit != 'true'}}
run: |
sudo CONDA_PATH=${{ env.CONDA_PATH }} bash ./ci/setup_conda.sh ${{ join(matrix.host.python) }}
- name: Reload environment variables
run: |
if [ -f ~/.zshrc ]; then . ~/.zshrc fi
if [ -f ~/.profile ]; then . ~/.profile fi
if [ -f ~/.bashrc ]; then . ~/.bashrc fi
which conda
conda --version
conda env list
- name: Setup VTK ${{ matrix.host.vtk }}
if: ${{steps.base-cache.outputs.cache-hit != 'true'}}
run: |
Expand Down

0 comments on commit ca054b1

Please sign in to comment.