From 4cb35b2ff44ce57e1f5f5221e26bd8fefcfe41d0 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 8 Jan 2024 02:52:28 -0800 Subject: [PATCH] deps(sccache): bump sccache (#173) Update sccache to 0.7.4 which contains a couple of important fixes for Windows. Co-authored-by: Alex Lorenz --- dist/restore/index.js | 4 ++-- src/restore.ts | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dist/restore/index.js b/dist/restore/index.js index 8abee41e..b1530254 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -59668,10 +59668,10 @@ async function installSccacheMac() { await execBash("brew install sccache"); } async function installSccacheLinux() { - await installSccacheFromGitHub("v0.5.3", "x86_64-unknown-linux-musl", "2c1dcc0ea0266482d83f81a2dc5f359cf526d4f96c79825301f47dff12d87c49", "/usr/local/bin/", "sccache"); + await installSccacheFromGitHub("v0.7.4", "x86_64-unknown-linux-musl", "5022d140adae985c0ad018667797aec03f7fe24781c848f770d1a52fbab02057", "/usr/local/bin/", "sccache"); } async function installSccacheWindows() { - await installSccacheFromGitHub("v0.5.3", "x86_64-pc-windows-msvc", "621f02f826ba8d5eea0eb6fb7119dd71806dbb32c321afedd2db7c5d089bdd45", + await installSccacheFromGitHub("v0.7.4", "x86_64-pc-windows-msvc", "820d60f1a5e6bf9aa2a39d9cfd54be45ede019067b7e5d9cb22fc27dc332611f", // TODO find a better place `${external_process_namespaceObject.env.USERPROFILE}\\.cargo\\bin`, "sccache.exe"); } diff --git a/src/restore.ts b/src/restore.ts index 9aaee727..1dad4c36 100644 --- a/src/restore.ts +++ b/src/restore.ts @@ -107,9 +107,9 @@ async function installSccacheMac() : Promise { async function installSccacheLinux() : Promise { await installSccacheFromGitHub( - "v0.5.3", + "v0.7.4", "x86_64-unknown-linux-musl", - "2c1dcc0ea0266482d83f81a2dc5f359cf526d4f96c79825301f47dff12d87c49", + "5022d140adae985c0ad018667797aec03f7fe24781c848f770d1a52fbab02057", "/usr/local/bin/", "sccache" ); @@ -117,9 +117,9 @@ async function installSccacheLinux() : Promise { async function installSccacheWindows() : Promise { await installSccacheFromGitHub( - "v0.5.3", + "v0.7.4", "x86_64-pc-windows-msvc", - "621f02f826ba8d5eea0eb6fb7119dd71806dbb32c321afedd2db7c5d089bdd45", + "820d60f1a5e6bf9aa2a39d9cfd54be45ede019067b7e5d9cb22fc27dc332611f", // TODO find a better place `${process.env.USERPROFILE}\\.cargo\\bin`, "sccache.exe"