File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -298,18 +298,11 @@ jobs:
298
298
timeout-minutes : 90
299
299
300
300
steps :
301
- - name : Pre Clean Up for self-hosted runner
302
- if : runner.os == 'Windows' && matrix.config.working-directory
303
- shell : cmd
304
- run : |
305
- if exist "${{ matrix.config.working-directory }}" rmdir /s /q "${{ matrix.config.working-directory }}"
306
- if exist "C:\actions-runner\_work\arduino-ide\arduino-ide" rmdir /s /q "C:\actions-runner\_work\arduino-ide\arduino-ide"
307
-
308
301
- name : Symlink custom working directory
309
302
shell : cmd
310
303
if : runner.os == 'Windows' && matrix.config.working-directory
311
304
run : |
312
- mklink /d "${{ matrix.config.working-directory }}" "C:\actions-runner\_work\arduino-ide\arduino-ide"
305
+ if not exist "${{ matrix.config.working-directory }}" mklink /d "${{ matrix.config.working-directory }}" "C:\actions-runner\_work\arduino-ide\arduino-ide"
313
306
314
307
- name : Checkout
315
308
if : fromJSON(matrix.config.container) == null
You can’t perform that action at this time.
0 commit comments