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 a4ef5b7
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/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib" >> $GITHUB_ENV
fi
- name: Build and install OSRM
run: |
Expand Down

0 comments on commit a4ef5b7

Please sign in to comment.