Skip to content

Commit a7e85a2

Browse files
authored
Merge pull request #1973 from IntelPython/pin-conda-build-version-in-ci
[MAINT] Pin conda-build to most recent working version
2 parents bcef07a + 9663c63 commit a7e85a2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/conda-package.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ jobs:
4747
- name: Add conda to system path
4848
run: echo $CONDA/bin >> $GITHUB_PATH
4949
- name: Install conda-build
50-
run: conda install conda-build -c conda-forge --override-channels
50+
# FIXME: unpin when conda-build fixes issues with lief
51+
run: conda install conda-build"<=24.11.2" -c conda-forge --override-channels
5152
- name: Store conda paths as envs
5253
shell: bash -l {0}
5354
run: |
@@ -96,9 +97,10 @@ jobs:
9697
python-version: ${{ matrix.python }}
9798

9899
- name: Install conda build
100+
# FIXME: unpin when conda-build fixes issues with lief
99101
run: |
100102
conda activate
101-
conda install -y conda-build
103+
conda install -y conda-build"<=24.11.2"
102104
conda list -n base
103105
104106
- name: Cache conda packages

0 commit comments

Comments
 (0)