Skip to content

Commit 040ac27

Browse files
committed
ci: bump CTCACHE_COMMIT to e393144d5c49b060a1dbc7ae15b9c6973efb967d
1 parent 7c310c7 commit 040ac27

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

contrib/containers/ci/ci.Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff 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
7171
RUN 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

8379
RUN \

0 commit comments

Comments
 (0)