diff options
author | crasm <crasm@git.vczf.net> | 2024-03-02 00:11:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-02 00:11:06 -0500 |
commit | 9bf297a02bfbd474e51912409a470dd797e2fe13 (patch) | |
tree | 56c6979a63a55cc730ce67b4f1b08091bfaba96b | |
parent | cb5e8f7fc4ee57d4bcccafbe04a82cededd35486 (diff) |
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.
-rw-r--r-- | .github/workflows/python-check-requirements.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/python-check-requirements.yml b/.github/workflows/python-check-requirements.yml index 92e1108b..b8220599 100644 --- a/.github/workflows/python-check-requirements.yml +++ b/.github/workflows/python-check-requirements.yml @@ -3,12 +3,14 @@ name: Python check requirements.txt on: push: paths: + - '.github/workflows/python-check-requirements.yml' - 'scripts/check-requirements.sh' - 'convert*.py' - 'requirements.txt' - 'requirements/*.txt' pull_request: paths: + - '.github/workflows/python-check-requirements.yml' - 'scripts/check-requirements.sh' - 'convert*.py' - 'requirements.txt' @@ -26,4 +28,4 @@ jobs: with: python-version: "3.11" - name: Run check-requirements.sh script - run: bash scripts/check-requirements.sh nocleanup + run: bash scripts/check-requirements.sh |