Skip to content

Commit 14eeee7

Browse files
committed
ci/conda: fix for ARM64
See conda-incubator/setup-miniconda#312 for details
1 parent 4d1130d commit 14eeee7

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Diff for: .github/workflows/macos-linux-conda.yml

+11
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,24 @@ jobs:
4949
restore-keys: ccache-macos-linux-conda-${{ matrix.os }}-${{ matrix.build_type }}-${{ matrix.cxx_options }}-${{ matrix.python-version }}-
5050

5151
- uses: conda-incubator/setup-miniconda@v3
52+
if: matrix.os != 'macos-14'
5253
with:
5354
activate-environment: eigenpy
5455
auto-update-conda: true
5556
environment-file: .github/workflows/conda/environment_macos_linux.yml
5657
python-version: ${{ matrix.python-version }}
5758
auto-activate-base: false
5859

60+
- uses: conda-incubator/setup-miniconda@v3
61+
if: matrix.os == 'macos-14'
62+
with:
63+
activate-environment: eigenpy
64+
auto-update-conda: true
65+
environment-file: .github/workflows/conda/environment_macos_linux.yml
66+
python-version: ${{ matrix.python-version }}
67+
auto-activate-base: false
68+
installer-url: https://github.com/conda-forge/miniforge/releases/download/23.11.0-0/Mambaforge-23.11.0-0-MacOSX-arm64.sh
69+
5970
- name: Build EigenPy
6071
shell: bash -el {0}
6172
run: |

0 commit comments

Comments
 (0)