From d04332d688bf83200917d1d66c8e76b9c494c166 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Wed, 1 Apr 2026 11:10:19 +0200 Subject: [PATCH] fix: use external 7zip for scoop installs on Windows Signed-off-by: deadprogram --- .github/workflows/windows.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 45cf4409b..a989435c6 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -27,6 +27,7 @@ jobs: - name: Install Dependencies shell: bash run: | + scoop config use_external_7zip true scoop install ninja binaryen - name: Checkout uses: actions/checkout@v6 @@ -98,6 +99,7 @@ jobs: C:/Users/runneradmin/go/pkg/mod - name: Install wasmtime run: | + scoop config use_external_7zip true scoop install wasmtime@29.0.1 - name: make gen-device run: make -j3 gen-device @@ -137,6 +139,7 @@ jobs: - name: Install Dependencies shell: bash run: | + scoop config use_external_7zip true scoop install binaryen - name: Checkout uses: actions/checkout@v6 @@ -201,7 +204,8 @@ jobs: - name: Install Dependencies shell: bash run: | - scoop install binaryen && scoop install wasmtime@29.0.1 + scoop config use_external_7zip true + scoop install binaryen wasmtime@29.0.1 - name: Checkout uses: actions/checkout@v6 - name: Install Go