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 61b806f commit af76abcCopy full SHA for af76abc
.github/workflows/containers/github-action-ci/Dockerfile
@@ -66,6 +66,11 @@ RUN apt-get update && \
66
file \
67
tzdata
68
69
+# Install sccache as it is needed by most of the project test workflows and
70
+# cannot be installed by the ccache action when executing as a non-root user.
71
+RUN curl -L 'https://github.com/mozilla/sccache/releases/download/v0.7.6/sccache-v0.7.6-x86_64-unknown-linux-musl.tar.gz' | tar xzf - -O --wildcards '*/sccache' > '/usr/local/bin/sccache' && \
72
+ chmod +x /usr/local/bin/sccache
73
+
74
ENV LLVM_SYSROOT=$LLVM_SYSROOT
75
ENV PATH=${LLVM_SYSROOT}/bin:${PATH}
76
0 commit comments