Skip to content

Commit 1b265a3

Browse files
committed
adding conda for m1
1 parent e33b1ed commit 1b265a3

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/regression_tests_cpu_binaries.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,19 @@ jobs:
2222
exclude:
2323
- os: macos-latest
2424
python-version: 3.8
25-
- os: macos-14
26-
python-version: 3.8, 3.9
2725
steps:
2826
- uses: actions/checkout@v3
2927
with:
3028
submodules: recursive
31-
- name: Setup conda with Python ${{ matrix.python-version }}
29+
- name: Setup Conda for M1
30+
if: matrix.os == 'macos-14'
31+
uses: s-weigand/setup-conda@v1
32+
with:
33+
update-conda: true
34+
python-version: '3.10'
35+
conda-channels: anaconda, conda-forge
36+
- name: Setup Conda for Other OS
37+
if: matrix.os != 'macos-14'
3238
uses: s-weigand/setup-conda@v1
3339
with:
3440
update-conda: true

0 commit comments

Comments
 (0)