Skip to content

cmake workflows on Windows fail due to Python 3.7 dependency #7180

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

Closed
pmeier opened this issue Feb 6, 2023 · 3 comments
Closed

cmake workflows on Windows fail due to Python 3.7 dependency #7180

pmeier opened this issue Feb 6, 2023 · 3 comments

Comments

@pmeier
Copy link
Collaborator Author

pmeier commented Feb 6, 2023

It seems we aren't using a custom conda env at all here, but basically rely on whatever is installed on the images:

executors:
windows-cpu:
machine:
resource_class: windows.xlarge
image: windows-server-2019-vs2019:stable
shell: bash.exe
windows-gpu:
machine:
resource_class: windows.gpu.nvidia.medium
image: windows-server-2019-nvidia:stable
shell: bash.exe

Since we already have something extra for Windows

if [[ "$OSTYPE" == "msys" ]]; then
conda install -yq conda-build cmake future
pip install dataclasses
fi

I've tried to explicitly install Python 3.8 there in #7182. However that leads to other issues.

@malfet
Copy link
Contributor

malfet commented Feb 10, 2023

Hmm, imo we should fix the workflow or disable it, but keeping it broken does not make sense to me.

@pmeier
Copy link
Collaborator Author

pmeier commented Feb 13, 2023

TBH, I'm not really sure what the cmake workflows even do. And I don't think we even some documentation of that. It should be related to a C++ only build, since we run

popd
cd examples/cpp/hello_world
mkdir build

but in the light of #7106, I'm not sure that is even doing something useful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants