Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

Commit 5297d82

Browse files
authored
change (dockerfile): return to workaround sccache's bug (#236)
* change (dockerfile): return to workaround sccache's bug * change (dockerfile): fix to a current master
1 parent 4cc65dc commit 5297d82

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dockerfiles/base-ci-linux/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ RUN set -eux; \
4646
rm rustup-init; \
4747
chmod -R a+w ${RUSTUP_HOME} ${CARGO_HOME}; \
4848
# install sccache
49-
cargo install sccache --features redis; \
49+
# cargo install sccache --features redis; \
50+
# FIXME: TEMPORARY OVERRIDE due to the sccache issue
51+
# https://github.com/mozilla/sccache/issues/663
52+
cargo install --git https://github.com/mozilla/sccache --rev 6628e1f70db3d583cb5e79210603ad878de3d315 --features redis; \
5053
# versions
5154
rustup show; \
5255
cargo --version; \

0 commit comments

Comments
 (0)