This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 1247ac2aa10 [v3-1-test] Move docker to /mnt for the "Publish docs"
workflow (#57371) (#57394)
1247ac2aa10 is described below
commit 1247ac2aa10803d49e536836459e9abeb9f1d0e9
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue Oct 28 01:24:52 2025 +0100
[v3-1-test] Move docker to /mnt for the "Publish docs" workflow (#57371)
(#57394)
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.
(cherry picked from commit 941d702c23adb8dfa08175dfc7f8dbf182d416b4)
---
.github/workflows/publish-docs-to-s3.yml | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/publish-docs-to-s3.yml
b/.github/workflows/publish-docs-to-s3.yml
index f2541d0626c..9ca30c924e8 100644
--- a/.github/workflows/publish-docs-to-s3.yml
+++ b/.github/workflows/publish-docs-to-s3.yml
@@ -189,6 +189,13 @@ jobs:
ref: ${{ inputs.ref }}
fetch-depth: 0
fetch-tags: true
+ - 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
@@ -305,7 +312,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.actor }}
INCLUDE_SUCCESS_OUTPUTS: false
- PYTHON_MAJOR_MINOR_VERSION: 3.10
+ PYTHON_MAJOR_MINOR_VERSION: "3.10"
VERBOSE: "true"
steps:
- name: "Cleanup repo"