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 ab4714d commit 2536631Copy full SHA for 2536631
.ci/docker/common/install_cache.sh
@@ -36,7 +36,12 @@ sed -e 's|PATH="\(.*\)"|PATH="/opt/cache/bin:\1"|g' -i /etc/environment
36
export PATH="/opt/cache/bin:$PATH"
37
38
# Setup compiler cache
39
-install_ubuntu
+if [ -n "$ROCM_VERSION" ]; then
40
+ curl --retry 3 http://repo.radeon.com/misc/.sccache_amd/sccache -o /opt/cache/bin/sccache
41
+else
42
+ install_ubuntu
43
+fi
44
+
45
chmod a+x /opt/cache/bin/sccache
46
47
function write_sccache_stub() {
0 commit comments