From 38efe24a54865a1c81c61357a1d83f16a88a8dc6 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 8 Mar 2024 18:13:44 -0600 Subject: [PATCH] Store choco cache in GitHub Actions cache This step is weirdly slow, perhaps it will go faster if we stash the download in GitHub --- .github/workflows/system-install.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/system-install.yml b/.github/workflows/system-install.yml index 4327fbd0f..733823d01 100644 --- a/.github/workflows/system-install.yml +++ b/.github/workflows/system-install.yml @@ -251,6 +251,14 @@ jobs: steps: - uses: actions/checkout@v4 + - name: "Configure choco cache" + run: choco config set cacheLocation ./.choco-cache + + - uses: actions/cache@v4 + with: + path: ./.choco-cache + key: choco-cache + - name: "Install Python" run: choco install python3 --verbose --version=3.9.13