This is an automated email from the ASF dual-hosted git repository.

MartijnVisser pushed a commit to branch release-1.20
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.20 by this push:
     new 20ec9d2f6da [FLINK-40058][ci] Free up disk space in nightly dist 
deployment jobs
20ec9d2f6da is described below

commit 20ec9d2f6da96e5e1082d2235ae1d1c465a443ab
Author: Martijn Visser <[email protected]>
AuthorDate: Fri Jul 3 09:48:54 2026 +0200

    [FLINK-40058][ci] Free up disk space in nightly dist deployment jobs
    
    The cron_snapshot_deployment jobs run on hosted ubuntu-24.04 agents,
    which leave only ~16 GB free. The multi-JDK CI image, the 4.2 GB Maven
    cache and the near-full dist build push disk usage above 99%, one
    dependency bump away from failing. Run free_disk_space.sh first, like
    every other hosted-agent job already does.
    
    Generated-by: Claude Code (Fable 5)
---
 tools/azure-pipelines/build-nightly-dist.yml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/tools/azure-pipelines/build-nightly-dist.yml 
b/tools/azure-pipelines/build-nightly-dist.yml
index 01082f1ccda..c3c7849a70a 100644
--- a/tools/azure-pipelines/build-nightly-dist.yml
+++ b/tools/azure-pipelines/build-nightly-dist.yml
@@ -24,6 +24,11 @@ jobs:
     workspace:
       clean: all
     steps:
+      # free up disk space on the hosted agent; the full dist build plus the
+      # Maven cache does not fit in the ~16 GB the image leaves free
+      - script: ./tools/azure-pipelines/free_disk_space.sh
+        target: host
+        displayName: Free up disk space
       - task: Cache@2
         displayName: Cache Maven local repo
         inputs:
@@ -77,6 +82,11 @@ jobs:
     workspace:
       clean: all
     steps:
+      # free up disk space on the hosted agent; the snapshot deploy build plus
+      # the Maven cache does not fit in the ~16 GB the image leaves free
+      - script: ./tools/azure-pipelines/free_disk_space.sh
+        target: host
+        displayName: Free up disk space
       - task: Cache@2
         displayName: Cache Maven local repo
         inputs:

Reply via email to