Skip to content

Commit

Permalink
Update sccache version to 0.3.3 (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus authored Jan 13, 2023
1 parent 150e52a commit fba817f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/restore/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59371,10 +59371,10 @@ async function installSccacheMac() {
await execBash("brew install sccache");
}
async function installSccacheLinux() {
await installSccacheFromGitHub("v0.3.0", "x86_64-unknown-linux-musl", "594b4323aaee02d3b5e1e19c20eb63acb53fd8ecd3c0a3e43618a6e9e36af2fe", "/usr/local/bin/", "sccache");
await installSccacheFromGitHub("v0.3.3", "x86_64-unknown-linux-musl", "8fbcf63f454afce6755fd5865db3e207cdd408b8553e5223c9ed0ed2c6a92a09", "/usr/local/bin/", "sccache");
}
async function installSccacheWindows() {
await installSccacheFromGitHub("v0.3.0", "x86_64-pc-windows-msvc", "e58646b1c377c7f873c7e13ae7298631fb490703ee15ad67ce326ed0dde2067e",
await installSccacheFromGitHub("v0.3.3", "x86_64-pc-windows-msvc", "d4bdb5c60e7419340082283311ba6863def4f27325b08abc896211038a135f75",
// TODO find a better place
`${external_process_namespaceObject.env.USERPROFILE}\\.cargo\\bin`, "sccache.exe");
}
Expand Down
8 changes: 4 additions & 4 deletions src/restore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,19 +83,19 @@ async function installSccacheMac() : Promise<void> {

async function installSccacheLinux() : Promise<void> {
await installSccacheFromGitHub(
"v0.3.0",
"v0.3.3",
"x86_64-unknown-linux-musl",
"594b4323aaee02d3b5e1e19c20eb63acb53fd8ecd3c0a3e43618a6e9e36af2fe",
"8fbcf63f454afce6755fd5865db3e207cdd408b8553e5223c9ed0ed2c6a92a09",
"/usr/local/bin/",
"sccache"
);
}

async function installSccacheWindows() : Promise<void> {
await installSccacheFromGitHub(
"v0.3.0",
"v0.3.3",
"x86_64-pc-windows-msvc",
"e58646b1c377c7f873c7e13ae7298631fb490703ee15ad67ce326ed0dde2067e",
"d4bdb5c60e7419340082283311ba6863def4f27325b08abc896211038a135f75",
// TODO find a better place
`${process.env.USERPROFILE}\\.cargo\\bin`,
"sccache.exe"
Expand Down

0 comments on commit fba817f

Please sign in to comment.