Skip to content

Commit

Permalink
Fix macos CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mjjbell committed Mar 14, 2024
1 parent 36bfa32 commit a2752aa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/osrm-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,10 @@ jobs:
fi
echo "CC=${CCOMPILER}" >> $GITHUB_ENV
echo "CXX=${CXXCOMPILER}" >> $GITHUB_ENV
if [[ "${RUNNER_OS}" == "macOS" ]]; then
# missing from GCC path, needed for conan builds of libiconv for example.
echo "LIBRARY_PATH=${LIBRARY_PATH}:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib" >> $GITHUB_ENV
fi
- name: Build and install OSRM
run: |
Expand Down

0 comments on commit a2752aa

Please sign in to comment.