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

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 941d702c23a Move docker to /mnt for the "Publish docs" workflow 
(#57371)
941d702c23a is described below

commit 941d702c23adb8dfa08175dfc7f8dbf182d416b4
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon Oct 27 21:27:54 2025 +0100

    Move docker to /mnt for the "Publish docs" workflow (#57371)
    
    When we are publishing docs and building SBOMs the regular disk
    space on / is not enough to hold all the necessary images. We need
    to move it to /mnt to make it works - /mnt has way more space.
---
 .github/workflows/publish-docs-to-s3.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/publish-docs-to-s3.yml 
b/.github/workflows/publish-docs-to-s3.yml
index a00b56f896d..9ca30c924e8 100644
--- a/.github/workflows/publish-docs-to-s3.yml
+++ b/.github/workflows/publish-docs-to-s3.yml
@@ -192,6 +192,10 @@ jobs:
       - name: "Free up disk space"
         shell: bash
         run: ./scripts/tools/free_up_disk_space.sh
+      - name: "Make /mnt writeable"
+        run: ./scripts/ci/make_mnt_writeable.sh
+      - name: "Move docker to /mnt"
+        run: ./scripts/ci/move_docker_to_mnt.sh
       - name: "Apply patch commits if provided"
         run: |
           if [[ "${APPLY_COMMITS}" != "" ]]; then

Reply via email to