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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
NODE_VERSION: 15.x
ESP_IDF_VERSION: v4.4.6
ESP_IDF_VERSION: v4.4.8
ESP8266_RTOS_SDK_VERSION: v3.4

jobs:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
context: sdk/esp-idf
load: true
push: false
tags: qmsk/esp-idf:dev
tags: qmsk/esp-idf:${{ env.ESP_IDF_VERSION }}

- name: Build
run: docker compose -f projects/esp32/docker-compose.yml run --rm build
Expand Down
4 changes: 2 additions & 2 deletions projects/esp32/docker-compose.devices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
services:

flash:
image: qmsk/esp-idf:dev
image: qmsk/esp-idf:v4.4.8
volumes:
- ../..:/build
working_dir: /build/projects/esp32
Expand All @@ -16,7 +16,7 @@ services:
ESPPORT: "${ESPPORT}"

monitor:
image: qmsk/esp-idf:dev
image: qmsk/esp-idf:v4.4.8
volumes:
- ../..:/build
working_dir: /build/projects/esp32
Expand Down
6 changes: 3 additions & 3 deletions projects/esp32/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
# $ docker compose run --rm build
services:
sdk:
image: qmsk/esp-idf:dev
image: qmsk/esp-idf:v4.4.8
build:
context: ../../sdk/esp-idf
args:
# also update .github/workflows/build.yml `ESP_IDF_VERSION`
ESP_IDF_VERSION: v4.4.6
ESP_IDF_VERSION: v4.4.8
BUILD_UID: ${BUILD_UID}
BUILD_GID: ${BUILD_GID}
command: idf.py --version

build:
image: qmsk/esp-idf:dev
image: qmsk/esp-idf:v4.4.8
volumes:
- ../..:/build
working_dir: /build/projects/esp32
Expand Down
2 changes: 1 addition & 1 deletion sdk/esp-idf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bookworm
FROM debian:trixie

# dependencies
# https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/linux-setup.html
Expand Down
Loading