Apply workaround for Conan installation on CI
This commit is contained in:
parent
54d486ae12
commit
e2442f9de9
5
.github/workflows/osrm-backend.yml
vendored
5
.github/workflows/osrm-backend.yml
vendored
@ -506,6 +506,11 @@ jobs:
|
|||||||
- name: Install dev dependencies
|
- name: Install dev dependencies
|
||||||
run: |
|
run: |
|
||||||
python3 -m pip install conan==1.53.0
|
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
|
||||||
|
echo "/Library/Frameworks/Python.framework/Versions/3.11/bin" >> $GITHUB_PATH
|
||||||
|
fi
|
||||||
|
|
||||||
# ccache
|
# ccache
|
||||||
if [[ "${RUNNER_OS}" == "Linux" ]]; then
|
if [[ "${RUNNER_OS}" == "Linux" ]]; then
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user