Skip to content

Commit 10e4300

Browse files
authored
Fix macOS CI: set CONDA_OVERRIDE_OSX to resolve libmamba codesign failure (#1239)
* Initial plan * Fix macOS CI: set CONDA_OVERRIDE_OSX=12.0 to prevent codesign failure * Fix macOS CI: apply CONDA_OVERRIDE_OSX only on macOS via conditional step * Fix macOS CI: use miniforge instead of mamba to avoid codesign Broken Pipe failure * Restore strict channel priority for reproducible conda builds --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent 8d4a707 commit 10e4300

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/python-package-conda.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
- name: Create python 3.11 conda env
2222
uses: conda-incubator/setup-miniconda@v3
2323
with:
24-
python-version: 3.11
25-
mamba-version: "*"
24+
python-version: '3.11'
25+
miniforge-version: latest
2626
activate-environment: donkey
2727
auto-activate-base: false
28-
channels: default, conda-forge, pytorch
29-
channel-priority: true
28+
channels: conda-forge, pytorch
29+
channel-priority: strict
3030
- name: Conda info and list
3131
run: |
3232
conda info

0 commit comments

Comments
 (0)