We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7af3fb commit 4dd7eb2Copy full SHA for 4dd7eb2
.github/workflows/osrm-backend.yml
@@ -502,6 +502,13 @@ jobs:
502
503
conan config init
504
yq eval '.compiler.clang.version += ["18"]' -i "$HOME/.conan/settings.yml"
505
+ - name: Add Apple-clang 16 to list of Conan compilers # workaround for the issue that Conan 1.x doesn't know about Apple-clang 16
506
+ if: ${{ matrix.ENABLE_CONAN == 'ON' && matrix.macos-14 == 'macos-14' }}
507
+ run: |
508
+ sudo wget https://github.com/mikefarah/yq/releases/download/v4.9.6/yq_darwin_arm64 -O /usr/local/bin/yq && sudo chmod +x /usr/local/bin/yq
509
+
510
+ conan config init
511
+ yq eval '.compiler.apple-clang.version += ["16.0"]' -i "$HOME/.conan/settings.yml"
512
- name: Prepare build
513
run: |
514
mkdir ${OSRM_BUILD_DIR}
0 commit comments