Apply workaround for Conan installation issue on CI (#6442)

This commit is contained in:
Siarhei Fedartsou
2022-11-05 16:56:16 +01:00
committed by GitHub
parent 0ae5190937
commit 6ab8728807
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -507,6 +507,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 why CI cannot find conan executable installed above
if [[ "${RUNNER_OS}" == "macOS" ]]; then
echo "/Library/Frameworks/Python.framework/Versions/3.11/bin" >> $GITHUB_PATH
fi
# ccache
if [[ "${RUNNER_OS}" == "Linux" ]]; then