Skip to content

Commit 9bf297a

Browse files
authored
workflows : remove nocleanup arg for check-requirements.sh (#5826)
Reduces peak tmpfs usage and should prevent the check from failing from running out of space. Fixes the 'No space left on device' issue mentioned in #5703.
1 parent cb5e8f7 commit 9bf297a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/python-check-requirements.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ name: Python check requirements.txt
33
on:
44
push:
55
paths:
6+
- '.github/workflows/python-check-requirements.yml'
67
- 'scripts/check-requirements.sh'
78
- 'convert*.py'
89
- 'requirements.txt'
910
- 'requirements/*.txt'
1011
pull_request:
1112
paths:
13+
- '.github/workflows/python-check-requirements.yml'
1214
- 'scripts/check-requirements.sh'
1315
- 'convert*.py'
1416
- 'requirements.txt'
@@ -26,4 +28,4 @@ jobs:
2628
with:
2729
python-version: "3.11"
2830
- name: Run check-requirements.sh script
29-
run: bash scripts/check-requirements.sh nocleanup
31+
run: bash scripts/check-requirements.sh

0 commit comments

Comments
 (0)