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
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@ jobs:
- group: ModernESP_C3_C5_C6
boards: "esp32c3 esp32c5 esp32c6"
cache_extra: ""
- group: ModernESP_S2
boards: "esp32s2"
cache_extra: ""
- group: ModernESP_S3
boards: "esp32s3"
cache_extra: ""
- group: ClassicESP
boards: "esp32 esp32s2 esp32-eth01 esp8266"
boards: "esp32 esp32-eth01 esp8266"
cache_extra: ""
- group: CustomBoards
boards: "esp32-GLEDOPTO_GL_C_616WL esp32-GLEDOPTO_GL_C_615WL esp32-DOMRAEM_WLE_ADM esp32-IOTORERO_ETHERNET"
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
.vscode/settings.json
src/idf_component.yml
src/idf_component.yml.orig
include/web_resources.h
src/backend/
export_backend/
release/
managed_components/
sdkconfig*
Expand Down
74 changes: 65 additions & 9 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"version": "2.0.0",
"tasks": [
{
"label": "Build ESP Core 2.x",
"label": "Build ModernESP_C2",
"type": "shell",
"command": "pio run -e esp32 -e esp32s2 -e esp32-eth01 -e esp8266",
"command": "pio run -e esp32c2",
"problemMatcher": [],
"presentation": { "reveal": "always", "panel": "shared" },
"options": {
Expand All @@ -15,9 +15,9 @@
}
},
{
"label": "Build ESP Core 3.x",
"label": "Build ModernESP_C3_C5_C6",
"type": "shell",
"command": "pio run -e esp32c3 -e esp32s3 -e esp32c6 -e esp32c2 -e esp32c5",
"command": "pio run -e esp32c3 -e esp32c5 -e esp32c6",
"problemMatcher": [],
"presentation": { "reveal": "always", "panel": "shared" },
"options": {
Expand All @@ -28,7 +28,59 @@
}
},
{
"label": "Build RP2040",
"label": "Build ModernESP_S2",
"type": "shell",
"command": "pio run -e esp32s2",
"problemMatcher": [],
"presentation": { "reveal": "always", "panel": "shared" },
"options": {
"env": {
"PATH": "${userHome}/.platformio/penv/Scripts;${userHome}/.platformio/penv;${env:PATH}",
"PYTHONPATH": ""
}
}
},
{
"label": "Build ModernESP_S3",
"type": "shell",
"command": "pio run -e esp32s3",
"problemMatcher": [],
"presentation": { "reveal": "always", "panel": "shared" },
"options": {
"env": {
"PATH": "${userHome}/.platformio/penv/Scripts;${userHome}/.platformio/penv;${env:PATH}",
"PYTHONPATH": ""
}
}
},
{
"label": "Build ClassicESP",
"type": "shell",
"command": "pio run -e esp32 -e esp32-eth01 -e esp8266",
"problemMatcher": [],
"presentation": { "reveal": "always", "panel": "shared" },
"options": {
"env": {
"PATH": "${userHome}/.platformio/penv/Scripts;${userHome}/.platformio/penv;${env:PATH}",
"PYTHONPATH": ""
}
}
},
{
"label": "Build CustomBoards",
"type": "shell",
"command": "pio run -e esp32-GLEDOPTO_GL_C_616WL -e esp32-GLEDOPTO_GL_C_615WL -e esp32-DOMRAEM_WLE_ADM -e esp32-IOTORERO_ETHERNET",
"problemMatcher": [],
"presentation": { "reveal": "always", "panel": "shared" },
"options": {
"env": {
"PATH": "${userHome}/.platformio/penv/Scripts;${userHome}/.platformio/penv;${env:PATH}",
"PYTHONPATH": ""
}
}
},
{
"label": "Build Pico",
"type": "shell",
"command": "pio run -e pico -e pico2",
"problemMatcher": [],
Expand All @@ -43,9 +95,13 @@
{
"label": "Build ALL",
"dependsOn": [
"Build ESP Core 3.x",
"Build ESP Core 2.x",
"Build RP2040"
"Build ClassicESP",
"Build ModernESP_C2",
"Build ModernESP_C3_C5_C6",
"Build ModernESP_S2",
"Build ModernESP_S3",
"Build CustomBoards",
"Build Pico"
],
"dependsOrder": "sequence",
"group": {
Expand All @@ -55,4 +111,4 @@
"presentation": { "reveal": "always", "panel": "shared" }
}
]
}
}
Loading