diff options
author | Petr Viktorin <encukou@gmail.com> | 2024-01-16 13:21:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-16 13:21:16 (GMT) |
commit | ac44ec6206a1e5479effd91e02e2946b94e98ede (patch) | |
tree | 46c3981ba2b780c5470d6bd6c9d780cdcd4b07fa | |
parent | af852740862169cf3e8789a13b86a7b1d03b91db (diff) | |
download | cpython-ac44ec6206a1e5479effd91e02e2946b94e98ede.zip cpython-ac44ec6206a1e5479effd91e02e2946b94e98ede.tar.gz cpython-ac44ec6206a1e5479effd91e02e2946b94e98ede.tar.bz2 |
gh-113858: GH Actions: Limit max ccache size for the asan build (GH-114113)
-rw-r--r-- | .github/workflows/build.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9578826..cc5ecc0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -454,6 +454,7 @@ jobs: uses: hendrikmuhs/ccache-action@v1.2 with: save: ${{ github.event_name == 'push' }} + max-size: "200M" - name: Configure CPython run: ./configure --config-cache --with-address-sanitizer --without-pymalloc - name: Build CPython |