Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ default.env.esp.python.version=3.9
default.env.esp.python.path=python3
default.env.esp.idf.download.path=/opt/actions-runner/_work/idf-eclipse-plugin/idf-eclipse-plugin/

# ESP-IDF tools installation directory used by EspIdfManagerTest
# Linux CI uses GITHUB_WORKSPACE placeholder; local Linux default is ~/.espressif/tools
default.env.idf.tools.path={0}/dependencies/idf-tools
Comment on lines +16 to +18

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟠 Major | ⚡ Quick win

Preserve the local tools-path fallback.

When GITHUB_WORKSPACE is unset, DefaultPropertyFetcher expands this to null/dependencies/idf-tools rather than the documented ~/.espressif/tools. Handle the missing environment variable in the fetcher or avoid applying this CI-only property locally.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tests/com.espressif.idf.ui.test/configs/default-test-linux.properties` around
lines 16 - 18, The default-test-linux configuration currently overrides the
documented local tools path with a value derived from an unset GITHUB_WORKSPACE.
Update DefaultPropertyFetcher to apply this CI-only path only when
GITHUB_WORKSPACE is set, otherwise preserve the existing ~/.espressif/tools
fallback; alternatively, remove or conditionally exclude this property for local
Linux execution.



#Developer Path
#default.env.esp.idf.path=C:\\esp-tools\\esp-idf-v4.4.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ default.env.esp.python.version=3.9
default.env.esp.python.path=python3.11
default.env.esp.idf.download.path={0}

# ESP-IDF tools installation directory used by EspIdfManagerTest
# Windows example: C:\\Espressif\\tools
# Linux CI example: {GITHUB_WORKSPACE}/dependencies/idf-tools
default.env.idf.tools.path=C:\\Espressif\\tools


#Developer Path
#default.env.esp.idf.path=C:\\esp-tools\\esp-idf-v4.4.1
Expand Down
Loading
Loading