From 62db79ce2c4f8f92830e7da2b67a2611b65935a8 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Thu, 7 Aug 2025 18:43:45 -0400 Subject: [PATCH] ci(docker): adjustable free space --- .github/workflows/__call-docker.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/__call-docker.yml b/.github/workflows/__call-docker.yml index d568ada9..2049b10f 100644 --- a/.github/workflows/__call-docker.yml +++ b/.github/workflows/__call-docker.yml @@ -32,6 +32,11 @@ on: required: false type: boolean default: false + maximize_build_space_root_reserve_size: + description: 'Maximize build space root reserve size.' + required: false + type: string + default: '10240' publish_release: required: true type: string @@ -136,7 +141,8 @@ jobs: if: inputs.maximize_build_space uses: easimon/maximize-build-space@v10 with: - root-reserve-mb: 30720 # https://github.com/easimon/maximize-build-space#caveats + # https://github.com/easimon/maximize-build-space#caveats + root-reserve-mb: ${{ inputs.maximize_build_space_root_reserve_size }} remove-dotnet: 'true' remove-android: 'true' remove-haskell: 'true'