From e0c07d2a65bfec5ee39afebd05503b72c4d3f4ff Mon Sep 17 00:00:00 2001 From: Arpad Borsos Date: Mon, 28 Sep 2020 12:08:11 +0200 Subject: [PATCH] work around macos cache corruption --- src/save.ts | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/save.ts b/src/save.ts index 094415b..6eb629f 100644 --- a/src/save.ts +++ b/src/save.ts @@ -1,5 +1,6 @@ import * as cache from "@actions/cache"; import * as core from "@actions/core"; +import * as exec from "@actions/exec"; import * as io from "@actions/io"; import fs from "fs"; import path from "path"; @@ -7,7 +8,7 @@ import { getCaches, getCmdOutput, getRegistryName, isValidEvent, paths } from ". async function run() { if (!isValidEvent()) { - //return; + return; } try { @@ -15,7 +16,11 @@ async function run() { const registryName = await getRegistryName(); const packages = await getPackages(); + // TODO: remove this once https://github.com/actions/toolkit/pull/553 lands + await macOsWorkaround(); + await pruneTarget(packages); + if (registryName) { // save the index based on its revision const indexRef = await getIndexRef(registryName); @@ -131,3 +136,11 @@ async function rmExcept(dirName: string, keepPrefix: Set) { } } } + +async function macOsWorkaround() { + try { + // Workaround for https://github.com/actions/cache/issues/403 + // Also see https://github.com/rust-lang/cargo/issues/8603 + await exec.exec("sudo", ["/usr/sbin/purge"]); + } catch {} +}