Skip to content

Commit c50c5e0

Browse files
committed
fix: use external 7zip for scoop installs on Windows
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent 9c6ed1b commit c50c5e0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/windows.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- name: Install Dependencies
2828
shell: bash
2929
run: |
30+
scoop config use_external_7zip true
3031
scoop install ninja binaryen
3132
- name: Checkout
3233
uses: actions/checkout@v6
@@ -98,6 +99,7 @@ jobs:
9899
C:/Users/runneradmin/go/pkg/mod
99100
- name: Install wasmtime
100101
run: |
102+
scoop config use_external_7zip true
101103
scoop install wasmtime@29.0.1
102104
- name: make gen-device
103105
run: make -j3 gen-device
@@ -137,6 +139,7 @@ jobs:
137139
- name: Install Dependencies
138140
shell: bash
139141
run: |
142+
scoop config use_external_7zip true
140143
scoop install binaryen
141144
- name: Checkout
142145
uses: actions/checkout@v6
@@ -201,7 +204,8 @@ jobs:
201204
- name: Install Dependencies
202205
shell: bash
203206
run: |
204-
scoop install binaryen && scoop install wasmtime@29.0.1
207+
scoop config use_external_7zip true
208+
scoop install binaryen wasmtime@29.0.1
205209
- name: Checkout
206210
uses: actions/checkout@v6
207211
- name: Install Go

0 commit comments

Comments
 (0)