Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Constraint pybind11 version to fix conda-forge Windows CI #831

Merged
merged 6 commits into from
Apr 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/conda-forge-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,17 @@ jobs:
if: contains(matrix.os, 'windows')
shell: bash -l {0}
run: |
# Compilation related dependencies
mamba install vs2019_win-64

- name: Remove icub-models and pcl [Windows]
- name: Windows-workarounds [Windows]
if: contains(matrix.os, 'windows')
shell: bash -l {0}
shell: cmd /C CALL {0}
run: |
# Due to this https://github.com/conda-forge/icub-models-feedstock/issues/18
# pcl is removed as a workaround for https://github.com/ami-iit/bipedal-locomotion-framework/pull/695#issuecomment-1632208836
# pcl can be re-added once we have a ros humble build compatible with PCL 1.13.0
:: Due to this https://github.com/conda-forge/icub-models-feedstock/issues/18
:: pcl is removed as a workaround for https://github.com/ami-iit/bipedal-locomotion-framework/pull/695#issuecomment-1632208836
:: pcl can be re-added once we have a ros humble build compatible with PCL 1.13.0
:: pybind11 constrained as workaround for https://github.com/conda-forge/pybind11-feedstock/issues/95
mamba install "pybind11<2.12.0"
mamba remove icub-models pcl

- name: Print used environment
Expand Down
Loading