Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:
digest: ${{ steps.docker_platform.outputs.digest }}
runs-on: ${{ inputs.runs-on }}
steps:
# - name: Free disk space
# # This step is only needed for esp32 builds, as they can be quite large
# if: startsWith(inputs.pio_platform, 'esp32')
# uses: jlumbroso/[email protected]
# with:
# docker-images: false
- name: Free disk space
# This step is only needed for esp32 builds, as they can be quite large
if: startsWith(inputs.pio_platform, 'esp32')
uses: jlumbroso/[email protected]
with:
docker-images: false

- uses: actions/checkout@v6

Expand Down
3 changes: 2 additions & 1 deletion Containerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Base image
FROM python:3.14-trixie AS base
# !! espressif32 platform does not yet support python 3.14
FROM python:3.13-trixie AS base
ENV PIP_ROOT_USER_ACTION=ignore
ENV DEBIAN_FRONTEND=noninteractive

Expand Down