Use apt-get to install Clang on CI

This commit is contained in:
Siarhei Fedartsou 2022-08-28 11:46:49 +02:00
parent e768fb95fc
commit f82796bf5f
2 changed files with 3 additions and 2 deletions

View File

@ -564,8 +564,8 @@ jobs:
- name: Check clang version - name: Check clang version
run: | run: |
if [[ -n ${CLANG_VERSION} ]]; then if [[ -n ${CLANG_VERSION} ]]; then
clang --version | grep ${CLANG_VERSION} clang --version | grep "${CLANG_VERSION}"
clang++ --version | grep ${CLANG_VERSION} clang++ --version | grep "${CLANG_VERSION}"
fi fi
- name: Prepare build - name: Prepare build

View File

@ -18,6 +18,7 @@
- FIXED: Bug in bicycle profile that caused exceptions if there is a highway=bicycle in the data. [#6296](https://github.com/Project-OSRM/osrm-backend/pull/6296) - FIXED: Bug in bicycle profile that caused exceptions if there is a highway=bicycle in the data. [#6296](https://github.com/Project-OSRM/osrm-backend/pull/6296)
- FIXED: Internal refactoring of identifier types used in data facade [#6044](https://github.com/Project-OSRM/osrm-backend/pull/6044) - FIXED: Internal refactoring of identifier types used in data facade [#6044](https://github.com/Project-OSRM/osrm-backend/pull/6044)
- Build: - Build:
- CHANGED: Use apt-get to install Clang on CI. [#6345](https://github.com/Project-OSRM/osrm-backend/pull/6345)
- CHANGED: Fix TBB in case of Conan + NodeJS build. [#6333](https://github.com/Project-OSRM/osrm-backend/pull/6333) - CHANGED: Fix TBB in case of Conan + NodeJS build. [#6333](https://github.com/Project-OSRM/osrm-backend/pull/6333)
- CHANGED: Migrate to modern TBB version. [#6300](https://github.com/Project-OSRM/osrm-backend/pull/6300) - CHANGED: Migrate to modern TBB version. [#6300](https://github.com/Project-OSRM/osrm-backend/pull/6300)
- CHANGED: Enable performance-move-const-arg clang-tidy check. [#6319](https://github.com/Project-OSRM/osrm-backend/pull/6319) - CHANGED: Enable performance-move-const-arg clang-tidy check. [#6319](https://github.com/Project-OSRM/osrm-backend/pull/6319)