File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -67,17 +67,13 @@ RUN set -ex; \
6767
6868# Install ctcache for clang-tidy result caching
6969# Pin to specific commit to ensure patch applies correctly
70- ARG CTCACHE_COMMIT=e33c063ca6e52b48bcefbc45d46d8c150ffa81ca
70+ ARG CTCACHE_COMMIT=e393144d5c49b060a1dbc7ae15b9c6973efb967d
7171RUN set -ex; \
7272 mkdir -p /usr/local/bin/src/ctcache; \
7373 curl -fsSL "https://raw.githubusercontent.com/matus-chochlik/ctcache/${CTCACHE_COMMIT}/src/ctcache/clang_tidy_cache.py" \
7474 -o /usr/local/bin/src/ctcache/clang_tidy_cache.py; \
7575 curl -fsSL "https://raw.githubusercontent.com/matus-chochlik/ctcache/${CTCACHE_COMMIT}/clang-tidy" \
7676 -o /usr/local/bin/clang-tidy-cache; \
77- sed -i 's/return shlex\. split(command\[ "arguments"\]\[ 0\] )/return command["arguments"]/' \
78- /usr/local/bin/src/ctcache/clang_tidy_cache.py; \
79- sed -i "s/digest = f'{i:x}'/digest = f'{i:02x}'/" \
80- /usr/local/bin/src/ctcache/clang_tidy_cache.py; \
8177 chmod +x /usr/local/bin/clang-tidy-cache;
8278
8379RUN \
You can’t perform that action at this time.
0 commit comments