File tree 2 files changed +26
-2
lines changed
2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ jobs:
191
191
rm -rf "/c/Program Files/dotnet"
192
192
rm -rf "/c/Program Files (x86)/Microsoft Visual Studio/2019"
193
193
194
- - name : Install nasm dependency
194
+ - name : Install nasm dependency (Windows)
195
195
run : |
196
196
choco install nasm
197
197
choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System'
Original file line number Diff line number Diff line change 42
42
if : runner.os == 'Linux'
43
43
run : sudo apt-get install -y curl clang git libssl-dev make pkg-config
44
44
45
+ - name : Free disk space (Windows)
46
+ if : runner.os == 'Windows'
47
+ run : |
48
+ rm -rf "/c/Program Files/dotnet"
49
+ rm -rf "/c/Program Files (x86)/Microsoft Visual Studio/2019"
50
+
51
+ - name : Install nasm dependency (Windows)
52
+ if : runner.os == 'Windows'
53
+ run : |
54
+ choco install nasm
55
+ choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System'
56
+
45
57
- name : Checkout repository
46
58
uses : actions/checkout@v4
47
59
@@ -312,7 +324,19 @@ jobs:
312
324
docker-images : true
313
325
swap-storage : true
314
326
315
- - name : Install runner dependencies
327
+ - name : Free disk space (Windows)
328
+ if : runner.os == 'Windows'
329
+ run : |
330
+ rm -rf "/c/Program Files/dotnet"
331
+ rm -rf "/c/Program Files (x86)/Microsoft Visual Studio/2019"
332
+
333
+ - name : Install nasm dependency (Windows)
334
+ if : runner.os == 'Windows'
335
+ run : |
336
+ choco install nasm
337
+ choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System'
338
+
339
+ - name : Install runner dependencies (Linux)
316
340
if : runner.os == 'Linux'
317
341
run : sudo apt-get install -y curl clang git libssl-dev make pkg-config
318
342
You can’t perform that action at this time.
0 commit comments