-
Notifications
You must be signed in to change notification settings - Fork 65
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
Remove yaml-cpp conda pkg from Windows CI env to avoid gtest conflict #888
Conversation
- name: Conda dependencies | ||
shell: bash -l {0} | ||
run: | | ||
conda install curl eigen | ||
conda install -c conda-forge hdf5=1.10.6 | ||
conda remove -y yaml-cpp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
interesting I wonder how this one is brought in to the environment.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
conda install with --no-deps
would perhas be another option
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are using a standard miniconda environment as the windows image, so it probably is just there from that process
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
... so it's only really relevant for CI, this this is a pretty good solution, I think
Description
Removes conda pkg
yaml-cpp
from windows CI build environment.Fixes #885
Motivation and Context
The
yaml-cpp
conda package installs a version ofgtest
, currently a version that is not compatible with the one we use. While it is questionable whether this package should installgtest
, we don't need this package for our build so we can simply remove it.