Skip to content

Commit b578e99

Browse files
authoredFeb 3, 2025
Merge branch 'apache:main' into main
2 parents f51f7bf + 56fdc20 commit b578e99

File tree

179 files changed

+2172
-1329
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+2172
-1329
lines changed
 

‎.github/actions/prepare_all_ci_images/action.yml

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ inputs:
2222
python-versions-list-as-string:
2323
description: 'Stringified array of all Python versions to test - separated by spaces.'
2424
required: true
25+
docker-volume-location:
26+
description: File system location where to move docker space to
27+
default: /mnt/var-lib-docker
2528
platform:
2629
description: 'Platform for the build - linux/amd64 or linux/arm64'
2730
required: true
@@ -30,6 +33,8 @@ runs:
3033
steps:
3134
- name: "Cleanup docker"
3235
run: ./scripts/ci/cleanup_docker.sh
36+
env:
37+
TARGET_DOCKER_VOLUME_LOCATION: ${{ inputs.docker-volume-location }}
3338
shell: bash
3439
# TODO: Currently we cannot loop through the list of python versions and have dynamic list of
3540
# tasks. Instead we hardcode all possible python versions and they - but

‎.github/actions/prepare_breeze_and_image/action.yml

+3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ runs:
3939
using: "composite"
4040
steps:
4141
- name: "Cleanup docker"
42+
# Move docker space to second partition to have more space
4243
run: ./scripts/ci/cleanup_docker.sh
44+
env:
45+
TARGET_DOCKER_VOLUME_LOCATION: /mnt/var-lib-docker
4346
shell: bash
4447
- name: "Install Breeze"
4548
uses: ./.github/actions/breeze

0 commit comments

Comments
 (0)