diff --git a/.github/workflows/osrm-backend.yml b/.github/workflows/osrm-backend.yml index 7ba683dbc..691f0c7c0 100644 --- a/.github/workflows/osrm-backend.yml +++ b/.github/workflows/osrm-backend.yml @@ -564,8 +564,8 @@ jobs: - name: Check clang version run: | 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 - name: Prepare build diff --git a/CHANGELOG.md b/CHANGELOG.md index 25c8aa337..3c75ce79e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: Internal refactoring of identifier types used in data facade [#6044](https://github.com/Project-OSRM/osrm-backend/pull/6044) - 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: 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)