Skip to content

Commit 7ec995b

Browse files
committed
Fix ESP32s3 builds exhaust disk space
Also revert to python 3.13 -- espressif32 platform does not yet support 3.14
1 parent e90b877 commit 7ec995b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/docker_build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ jobs:
4242
digest: ${{ steps.docker_platform.outputs.digest }}
4343
runs-on: ${{ inputs.runs-on }}
4444
steps:
45-
# - name: Free disk space
46-
# # This step is only needed for esp32 builds, as they can be quite large
47-
# if: startsWith(inputs.pio_platform, 'esp32')
48-
# uses: jlumbroso/[email protected]
49-
# with:
50-
# docker-images: false
45+
- name: Free disk space
46+
# This step is only needed for esp32 builds, as they can be quite large
47+
if: startsWith(inputs.pio_platform, 'esp32')
48+
uses: jlumbroso/[email protected]
49+
with:
50+
docker-images: false
5151

5252
- uses: actions/checkout@v6
5353

Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Base image
2-
FROM python:3.14-trixie AS base
2+
FROM python:3.13-trixie AS base
33
ENV PIP_ROOT_USER_ACTION=ignore
44
ENV DEBIAN_FRONTEND=noninteractive
55

0 commit comments

Comments
 (0)