Skip to content

Commit e28887d

Browse files
authored
Clean up old temporary workspaces in Windows workflows (#3344)
1 parent 8c5adbe commit e28887d

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/build-test-windows.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ jobs:
3333
with:
3434
python-version: '3.9'
3535

36+
- name: Clean up old workspaces
37+
shell: bash
38+
run: |
39+
rm -rf /c/gh*
40+
3641
# Copy workspace to a temporary location with a shorter name.
3742
- name: Copy workspace
3843
run: |

.github/workflows/pip-test-windows.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ jobs:
4545
with:
4646
python-version: '3.9'
4747

48+
- name: Clean up old workspaces
49+
shell: bash
50+
run: |
51+
rm -rf /c/gh*
52+
4853
# Copy workspace to a temporary location with a shorter name.
4954
- name: Copy workspace
5055
run: |

0 commit comments

Comments
 (0)