From f00645b74d7b7d8e043e114402764177105973d3 Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Fri, 20 Oct 2023 14:56:26 -0700 Subject: [PATCH] .github/zephyr: try to re-use already installed msys64 This should save 20-30s and reduce the number of variables Signed-off-by: Marc Herbert --- .github/workflows/zephyr.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/zephyr.yml b/.github/workflows/zephyr.yml index 25af4e96cd8a..3a61346118b2 100644 --- a/.github/workflows/zephyr.yml +++ b/.github/workflows/zephyr.yml @@ -333,14 +333,12 @@ jobs: ninja.exe --version # MSYS2 provides gcc x64_86 toolchain & openssl - # Installs in D:/a/_temp/msys64 - # - # Note there is already C:/msys64/ provided by - # https://github.com/actions/runner-images/blob/win22/20230918.1/images/win/Windows2022-Readme.md - # Is it not good enough? Maybe it could save 20-30s. - name: Initialize MSYS2 uses: msys2/setup-msys2@v2 with: + # Try to re-use c:/msys64 which is already there + # https://github.com/actions/runner-images/blob/win22/20230918.1/images/win/Windows2022-Readme.md + release: false msystem: MSYS install: gcc openssl-devel path-type: inherit