Skip to content

Commit

Permalink
Merge pull request #1973 from IntelPython/pin-conda-build-version-in-ci
Browse files Browse the repository at this point in the history
[MAINT] Pin conda-build to most recent working version
  • Loading branch information
ndgrigorian authored Jan 17, 2025
2 parents bcef07a + 9663c63 commit a7e85a2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
- name: Add conda to system path
run: echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda-build
run: conda install conda-build -c conda-forge --override-channels
# FIXME: unpin when conda-build fixes issues with lief
run: conda install conda-build"<=24.11.2" -c conda-forge --override-channels
- name: Store conda paths as envs
shell: bash -l {0}
run: |
Expand Down Expand Up @@ -96,9 +97,10 @@ jobs:
python-version: ${{ matrix.python }}

- name: Install conda build
# FIXME: unpin when conda-build fixes issues with lief
run: |
conda activate
conda install -y conda-build
conda install -y conda-build"<=24.11.2"
conda list -n base
- name: Cache conda packages
Expand Down

0 comments on commit a7e85a2

Please sign in to comment.