-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Apply workaround for Conan installation issue on CI #6442
Conversation
@@ -506,6 +506,11 @@ jobs: | |||
- name: Install dev dependencies | |||
run: | | |||
python3 -m pip install conan==1.53.0 | |||
# workaround for issue that GitHub Actions seems to not adding it to PATH after https://github.com/actions/runner-images/pull/6499 | |||
# and that's CI cannot find conan executable installed above | |||
if [[ "${RUNNER_OS}" == "macOS" ]]; then |
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.
I should have created an issue in https://github.com/actions/runner-images repo and I bet there is better fix in general(at least we could detect /Library/Frameworks/Python.framework/Versions/3.11
string automatically), but just want to unblock @DennisOSRM with his PRs
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.
Thanks
I bet it should be fixed by https://github.com/actions/runner-images/pull/6518/files |
Issue
Seems to be related not to Conan itself, but this update of macOS image we are using https://github.com/actions/runner-images/pull/6499/files
Tasklist
Requirements / Relations
Link any requirements here. Other pull requests this PR is based on?